@import url("https://fonts.bunny.net/css?family=poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background-image: url("/images/checkerboard-black.jpg");
	background-repeat: repeat;
	&::before {
		content: "";
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to bottom, #0004, #000a);
		z-index: -5;
	}

    color: #fff;
}