body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	color: white;
	position: relative;
	background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e);
	background-size: 300% 300%;
	animation: gradient 20s ease-in-out infinite;
	text-align: center;
}

h1 {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 666;
	font-style: italic;
	font-size: 4rem;
}

footer {
	position: absolute;
	bottom: 0%;
	width: 100%;
	height: 30px;
	font-family: "Inter", sans-serif;
}

a {
	color: white;
}

.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@font-face {
	font-family: "Inter";
	src: url("assets/Inter.woff2");
}

@font-face {
	font-family: "Space Grotesk";
	src: url("assets/SpaceGrotesk.woff2");
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
