@charset "utf-8";

* {
	font-family: verdana, arial, sans-serif;
}

body {
	font-size: 22px;
	background-color: darkslategrey;
	color: orange;
}

header, footer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-list li {
	margin: 0px;
	width: 200px;
}

.nav-list li:hover {
	font-weight: bold;
	border-bottom: white solid 3px;
	background-color: grey;
	color: yellow;
}

.nav-list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	align-items: center;
	justify-content: space-between;
}

a {
	color: cyan;
}
