/* russo-one-regular - latin */
@font-face {
	font-family: 'Russo One';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/russo-one-v14-latin-regular.eot'); /* IE9 Compat Modes */
	src: local(''),
		url('../../fonts/russo-one-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('../../fonts/russo-one-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
		url('../../fonts/russo-one-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
		url('../../fonts/russo-one-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
		url('../../fonts/russo-one-v14-latin-regular.svg#RussoOne') format('svg'); /* Legacy iOS */
}
* {
	font-family: 'Russo One', sans-serif;
	margin: 0;
	padding: 0;
}
html {
	font-size: 12px;
}
html::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}
html::-webkit-scrollbar-thumb {
	background: #434343;
	border-radius: 16px;
	box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}
html::-webkit-scrollbar-track {
	background: linear-gradient(90deg,#434343,#434343 1px,#111 0,#111);
}
body {
	font-family: system-ui;
	min-height: 100vh;
	/* display: grid;
	place-content: center;
	overflow: hidden; */
	color: white;
	display: flex;
	flex-direction: column;
	width: 100%;
}
h1 {
	/*position: absolute;
	text-align: center;
	width: 100%;*/
	margin-top: 10px;
}
footer {
	text-align: center;
	padding: 20px 0;
	background-color: black;
	margin-top: auto;
}
footer a {
	color: white;
}
footer a:hover {
	color: #ca5252;
}
@media only screen and (max-width: 600px) and (max-aspect-ratio: 1/1) {
	html {
		font-size: 1.5vw;
	}
	body {
		font-size: 3vw;
	}
}
@media only screen and (max-height: 600px) and (min-aspect-ratio: 1/1) {
	html {
		font-size: 2vh;
	}
}