body {
	font-family: 'Raleway', sans-serif;
	margin: 0;
	color: #424242;
	font-size: .9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
}

h1 {
	font-size: 2.5rem
}

h2 {
	font-size: 2rem
}

p {
	margin-top: 0;
	line-height: 1.4rem;
}

a,
.color-primary {
	color: rgba(50, 149, 150, .8) !important;
}

.center {
	text-align: center;
}

.italic {
	font-style: italic;
}

#navbar {
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 0;
	text-transform: uppercase;
	text-align: center;
	z-index: 100;
	min-height: 40px;
}

#navbar img {
	position: absolute;
	left: 1rem;
	width: 80px;
}

#navbar a.menu {
	display: inline-block;
	text-align: center;
	padding: 14px;
	text-decoration: none;
	color: #424242;
}

#navbar a.icon {
	display: none;
}

#navbar.shaded {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 7px #CCC;
}


#start,
#contact {
	min-height: 100vh;
}

#start {
	justify-content: left;
	background-image: url(../gfx/start.jpg);
}

#start .content {
	background-color: #FFF;
	position: relative;
	margin-left: 130px;
	margin-right: 130px;
	margin-top: -150px;
	max-width: 810px;
	opacity: 0.8;
}
#start h1 {
	margin-top:0;
}

#contact {
	background-image: url(../gfx/ready.jpg);
	color: #FFF;
}

#contact .content {
	background-color: rgba(0, 0, 0, 0.2);
	max-width: 500px;
	/*color:#424242;*/
	padding: 1rem;
}

#contact a {
	color: #FFF !important;
}

.container {
	display: grid;
	align-content: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.content {
	max-width: 1000px;
	text-align: left;
	padding: 2rem;
}

.grid {
	text-align: left;
	display: flex;
	flex-direction: column;
}

.grid>.cell {
	display: flex;
	align-items: flex-start;
	margin-bottom: 5rem;
}

.grid>.cell img {
	max-width: 100%;
	margin-right: 3rem;
}

.grid>.cell h2 {
	margin-top: 0;
}


@supports (-webkit-overflow-scrolling: touch) {

	/* CSS specific to iOS devices */
	.container {
		background-attachment: scroll;
	}
}

@media only screen and (max-width: 1000px) {

	h1 {
		font-size: 2.2rem
	}

	h2 {
		font-size: 1.8rem
	}

	.grid>.cell {
		flex-direction: column;
		text-align: center;
	}

	.grid>.cell p {
		text-align: left;
	}

	.grid>.cell img {
		margin: auto;
	}

	.grid>.cell h2 {
		margin-top: 2rem;
	}

	#start .content,
	#contact .content {
		margin: 80px 2rem;
	}

	.container {
		
	}

	#navbar a.menu {
		display: none;
	}

	#navbar a.icon {
		display: block;
		position: absolute;
		right: 25px;
		top: 25px;
		font-size: 1.5rem;
	}

	#navbar.responsive {}

	#navbar.responsive .icon {}

	#navbar.responsive a {
		display: block;
		text-align: center;
	}

}