* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color: #3306b4;
	background-color: #FFFFFF;
}
a {
	text-decoration: none;
	color: #5c1964;
}
a.active {
	color: #3306b4;
}
nav {
	font-style: none;
	width: 240px;
	position: fixed;
	height: 100%;
	float: left;
	font-weight: 700;
	padding: 100px 75px 30px;
}
nav h2 {
	font-size: 1.9em;
}
nav ul {
	list-style: none;
	font-size: 1.4em;
}
section {
	overflow: hidden;
	margin-top: 100px;
	margin-left: 350px;
	float: left;
}

section .img span {
	color: #9e9e9e;
	display: block;
	margin-bottom: 50px;
}
section .img img {
	max-width: 90%;
}
@media (max-width: 800px) {
	nav {
		width: 100%;
		height: auto;
		position: relative;
		float: none;
		padding: 20px;
	}
	nav h2 {
		font-size: 1.4em;
	}
	nav ul {
		font-size: 1em;
	}
	section {
		margin-left: 0;
		margin-top: 0;
		float: none;
	}
	section .img img {
		max-width: 100%;
	}
}