body {
	background: #FFF;
	color: #111;
	font-family: "DM Sans";
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 400;
	src: local('DM Sans Regular'),
		url('fonts/dm-sans-v11-latin-regular.woff2') format('woff2'),
		url('fonts/dm-sans-v11-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 700;
	src: local('DM Sans Bold'),
		url('fonts/dm-sans-v11-latin-700.woff2') format('woff2'),
		url('fonts/dm-sans-v11-latin-700.woff') format('woff');
}

@font-face {
	font-family: 'DM Mono';
	font-style: normal;
	font-weight: 400;
	src: local('DM Mono Regular'),
		url('fonts/dm-mono-v10-latin-regular.woff2') format('woff2'),
		url('fonts/dm-mono-v10-latin-regular.woff') format('woff');
}

#splash {
	display: grid;
	align-items: center;
	text-align: center;
	height: 100vh;
}

h1 {
	font-size: 3rem;
	font-weight: normal;
	margin: 0 0 60px 0;
}

p {
	font-size: 2rem;
	line-height: 2em;
}

span {
	border: 2px solid #111;
	padding: 5px 18px;
	border-radius: 40px;
}

span:hover {
	background: #000;
	color: #FFF;
	transition: all .5s;
}