html{
	display: flex;
	flex-direction: column;
}
a, a:hover{
	text-decoration: none;
}
.nav-container{
	background: #212121;
}
.gap{
	height: 90px;
}
.all-container{
	min-height: 100vh;
	width: 100%;
	margin-top: 30px;
	padding: 0px 20vw;
}
.section{
	min-height: 200px;
	width: 100%;
	margin:0px 0px 5vh 0px;
	padding-bottom: 5vh;
	border-bottom: 1px solid #CFD8DC;
}
.section-image{
	height: 150px;
	margin: 0px 20px;
	opacity: 0.9;
}
.right > .description{
	text-align: right;
	margin-right: 0px;
}
.description{
	width: 100%;
}
.description h1{
	font-family: "Raleway";
	font-size: 1.8em;
}
.description p{
	font-size: 1.1em;
}
@media only screen and (max-width: 600px) {
	.gap{
		height: 115px;
	}
	.all-container{
		padding: 0px 20px;
	}
	.section-image{
		float:none;
		margin: 0px auto;
		height: 100px;
	}
	.section{
		text-align: center;
	}
	.right > .description{
		text-align: center;
		float: none;
	}
}
