@font-face {
    font-family: 'norwester';
    src: url('fonts/norwester-webfont.woff2') format('woff2'),
         url('fonts/norwester-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body, p, a {
	margin: 0;
	border: 0;
	padding: 0;
}
body {
	width: 100vw;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-rows: 1fr auto 1fr;
	grid-template-areas: 
		". . ."
		". main ."
		". . .";
	font-family: "norwester", Arial, sans-serif;
}
p {
	font-size: 20px;
	text-transform: uppercase;
	margin-top: 25px;
}
a {
	text-decoration: none;
	color: red;
}
a:hover {
	border-bottom: 2px dashed red;
	padding-bottom: 2px;
}

.content {
	grid-area: main;
	text-align: center;
}

.logo {
	width: 500px;
}