:root {
	--link: hsl(218, 100%, 50%);
	--hover: hsl(218, 100%, 70%);
	--grau: #edeff6;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

@font-face {
	font-family: 'Dx Slight';
	src: url("../fonts/Dx-Slight-VF.woff2") format("woff2 supports variations"),
    	 url("../fonts/Dx-Slight-VF.woff2") format("woff2-variations");
	font-weight: 100 900;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
	font-family: sans-serif;
}

body {
	margin: 0;
}

a {
	text-decoration: none;
	color: var(--link);
}

main {
	margin-left: 16px;
	margin-right: 16px;
	margin-bottom: 6.25vw;
}

h1 {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 80px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 12px;
	font-size: 120%;
	line-height: 165%;
}

@media only screen and (min-width: 650px) {
	h1 {
		letter-spacing: 20px;
		font-size: 150%;
	}
}

@media (hover: hover) {
	a:hover {
		color: var(--hover);
	}
}