@font-face {
	font-family: basic;
	src: url(/res/font/Comfortaa-VariableFont_wght.ttf);
}

html {
	font-size: 2vmax;
	font-family: basic;
	font-weight: 1000;
}
body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
	width: 70vw;
	margin: auto;
}
a {
	margin: 0.5vmin;
	border: solid #666 1vmin;
	border-radius: 1rem;
	padding: 2vmin;
	background: #ccc;
	text-decoration: none;
	transition: all 0.5s;
}
a:any-link {
	color: #333;
}
a:hover {
	border-color: #444;
	color: #111;
	background: #eee;
	transform: scale(1.01);
}
