/*MAIN STYLESHEET*/
#logo {
	width: 250px;
	height: 250px;
	margin: 80px 80px 5px;
}
header {
	flex: 0 0 25%;
}
nav {
	margin-left: 40px;
	font-family: "Fredoka", sans-serif;
	font-size: 40px;
	line-height: 1.5em;
	margin-top: 1em;
	width: 100px;
}
ul {
	list-style-type: none;
	text-decoration: none;
}
body {
	display: flex;
	flex-flow: row wrap;
	margin: 0;
	justify-content: space-between;
}
body > section {
	flex: 0 0 70%;
}
footer {
	font-family: "Fredoka", sans-serif ;
	flex: 0 0 100%;
	text-align: center;
}
a:link {
	color: royalblue;
}
a:visited {
	color: hotpink;
}
a:hover {
	color: skyblue;
}
a:active {
	color: blueviolet;
}

