@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital@0;1&display=swap');

body {
	font-family: 'Azeret Mono', monospace;
	color: black;
	font-size: 16px;
	line-height: 1.5;
}

header, main {
	width: 70vw;
	margin-left: 15vw;
}
header {
	margin-top: 2em;
	margin-bottom: 2em;
}
nav ul li {
	display: inline-block;
}
main {
	margin-top: 1em;
	margin-bottom: 1em;
}

a:link, a:visited {
	text-decoration: none;
	color: white;
	background-color: #2A46B7;
}
a:hover, a:active {
	text-decoration: none;
	color: #2A46B7;
	background-color: white;
}
.c {
	color: #2A46B7;
}

button {
	box-sizing: border-box;
	padding: 5px 10px;
	border: 1px solid black;
	
	font-family: 'Azeret Mono', monospace;
}
input[type=text], input[type=password] {
	box-sizing: border-box;
	padding: 5px 1em;
	border: 1px solid #2A46B7;
	
	font-family: 'Azeret Mono', monospace;
}
input[type=text]:focus, input[type=password]:focus {
	border-color: #2A46B7;
}
textarea {
	width: 100%;
	height: 20em;
	
	padding: 1em;
}