@import url(inter/inter.css);
:root {
	font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
	:root {
		font-family: "InterVariable", sans-serif;
		font-optical-sizing: auto;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #111 !important;
	}
	a {
		color: #eee !important;
	}
}

body {
	background-color: #eee;
}

a {
	color: #111;
	text-decoration: none;
	font-size: 11rem;
}

a:hover {
	font-weight: 800;
	font-size: 7rem;
}

a:active {
	transform: scale(0.95);
	transition: all 0.1s ease-out;
}

.b {
	opacity: 0;
	font-size: 0rem;
}

a:hover .b {
	opacity: 1;
	font-size: 1em;
}

a:not(:hover) .b {
	transition-delay: 0s !important;
}

* {
	transition: all 0.5s cubic-bezier(0.5, 0.8, 0.01, 1.2);
}
