body {
    font-family: cursive;
    background-color: cornflowerblue;
}

.banner {
    background-color: #333;
    text-align: center;
    color: cornflowerblue;
    height: 15vh;
    margin-bottom: 1vh;
}

.company {
    font-size: 3rem;
    margin-top: 0;
}

.filler {
    color: transparent;
}

nav {
	background-color: #333;
	position: relative;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

nav ul li {
	margin: 0;
}

nav ul li a {
	display: block;
	color: cornflowerblue;
	text-align: center;
	padding: 16px;
	text-decoration: none;
}

nav ul li a:hover {
	background-color: #ddd;
	color: cornflowerblue;
}

@media screen and (max-width: 600px) {
	nav ul {
		flex-direction: column;
	}
	nav ul li {
		border-top: 1px solid #ddd;
	}
}
