@font-face {
	font-family: "Grandstander";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("assets/fonts/grandstander-bold.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	
}

@font-face {
	font-family: "Grandstander";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url("assets/fonts/grandstander-black.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Grandstander, sans-serif;
	font-weight: 700;
	font-size: 10px;
	font-size: 1vw;
	font-size: min(1.25vw, 1vh);
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	position: fixed;
	background: #2060cf;
	color: #fff;
	font-size: 4rem;
	line-height: 1.2;
	text-size-adjust: none;
	-webkit-touch-callout: none;
}

h1, #logo {
	margin: 2rem 0;
	text-transform: uppercase;
	pointer-events: none;
	user-select: none;
	font-size: 12rem;
	font-weight: 900;
}

p {
	margin: 0;
	color: #ffbf00;
	pointer-events: none;
	user-select: none;
}

@keyframes wobble {
	from {
		transform: rotate(-2.5deg);
	}
	to {
		transform: rotate(2.5deg);
	}
}

.wobble {
	animation: 1.5s ease-in-out 0s infinite alternate wobble;
}

#content {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#logo {
	width: 80rem;
	font-size: 12rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	pointer-events: none;
	user-select: none;
}