@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
	height: 100vh;
	width: 100vw;
	background-color: #1d1d1f;
	font-family: "Inter", sans-serif;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
::-webkit-scrollbar {
	display: none;
}
h2 {
	font-size: 48px;
	width: 85%;
	max-width: 400px;
	line-height: 1.15;
	text-align: center;
	background: linear-gradient(
		91.36deg,
		#52f0c8 0%,
		#49d6b3 13.02%,
		#63c9d6 25.52%,
		#a58de3 37.5%,
		#56abec 49.48%,
		#737eb7 63.02%,
		rgb(73, 185, 189) 72.92%,
		#57acdd 84.38%,
		#515fdf 97.92%
	);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	letter-spacing: -0.045em;
	-webkit-text-fill-color: transparent;
	animation: intro-gradient 7.5s infinite ease both;
	-webkit-animation: intro-gradient 7.5s infinite ease both;
	-moz-animation: intro-gradient 7.5s infinite ease both;
	font-weight: 600;
	margin-top: 6rem;
	margin-bottom: 8rem;
}
.logo {
	width: 80%;
	max-width: 600px;
}
.bubble {
	transform: scale(0.55);
	margin-top: -1rem;
	position: absolute;
}

@-webkit-keyframes intro-gradient {
	0% {
		background-position: 0% 4%;
	}

	50% {
		background-position: 100% 97%;
	}

	100% {
		background-position: 0% 4%;
	}
}

@-moz-keyframes intro-gradient {
	0% {
		background-position: 0% 4%;
	}

	50% {
		background-position: 100% 97%;
	}

	100% {
		background-position: 0% 4%;
	}
}

@keyframes intro-gradient {
	0% {
		background-position: 0% 4%;
	}

	50% {
		background-position: 100% 97%;
	}

	100% {
		background-position: 0% 4%;
	}
}


@media only screen and (min-width: 600px) {
	.bubble {
		margin-top: -4rem;
	}
}