* {
	box-sizing: border-box;
}
body {
	margin: 0;
}
section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	color: #dd0031;
	font-weight: 300;
}

/* main navigation */
#main-nav {
	box-shadow: 0 3px 3px 0 rgba(32, 33, 36, 0.3);
	height: 65px;
	padding: 0 30px;
}
#main-nav a {
	text-decoration: none;
	color: #dd0031;
	font-family: "comic sans ms";
	margin-left: 30px;
	line-height: 65px;
	float: left;
}
#main-nav a:last-child{
	float: right;
	background-color:#dd0031;
	color: white;
	border-radius: 20px;
	line-height: normal;	
	margin-top: 20px;
	padding: 5px 10px;
}
#nav-logo {
	height: 100%;
	float: left;
}
#main-nav a {
	text-decoration: none;
}
/* side navigation */
#side-nav {
	text-transform: uppercase;
}
#side-nav ul {
	list-style-type: none;
}
#side-nav ul li a {
	text-decoration: none;
}