html, body {
	width:100%;
	height:100%;
	margin:0px;
}

/*
COLOR SCHEME
#A1C6D9 lightblue for buttons and icons
#797979 lightgreyish for text
#1D1E1F darkgrey for general color backgrounds
#FFFFFF white to contrast the words with a lightblue background
*/


nav {
	position:absolute;
	width:100%;
	display:flex;
	justify-content: space-around;
	color:white;
}

nav .leftHeader {
	display:flex;
}

nav .leftHeader h2 {
	margin: 15px 0px 10px 0px;
	font-family:'Open Sans';
}

nav ul {
	display:flex;
	margin:0px;
	list-style-type: none;
	font-family:'Open Sans';
}
    
nav li {
	margin:20px 15px 0px 15px;
	padding:0px;
	border-bottom:1px solid transparent;
	cursor: pointer;
	transition: .5s;
}

nav li:hover {
	color:#A1C6D9;
	border-bottom:1px solid #A1C6D9;
	transition: .5s;
}

main {
	width:100%;
	height:100%;
	background-image: url(../img/mainbackground.jpg);
	background-size:cover;
	background-attachment: fixed;
}

main .overlay {
	width:100%;
	height:100%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.55) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73000000', endColorstr='#73000000',GradientType=0 ); /* IE6-9 */
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: 'Open Sans';
	color:#FFF;
}

main .overlay h1 {
	margin:0px;
	font-size:65px;
	font-weight: 700;
}

.overlay .introMain {
	width:500px;
	text-align: center;
}

.introMain .smallHeading {
	margin:0px;
	font-weight: 700;
	font-size:30px;
}

.introMain .headingIntro {
	margin:10px 0px 0px 0px;
	line-height: 30px;
	font-size:.9em;
}

.introMain .learnMore {
	cursor:pointer;
	margin:20px 0px 0px 0px;
	padding: 10px;
	width:170px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
	color:white;
	font-family: 'Open Sans';
	font-size:1.1em;
	border:2px solid white;
	transition: .5s;
}

.learnMore:hover {
	background-color:#A1C6D9;
	border-color:#A1C6D9;
	color:white;
}

.overlay i {
	position: absolute;
	bottom:0;
	cursor: pointer;
	margin:0px 0px 70px 0px;
	width:62px;
	height:62px;
	font-size:4em;
	border:1px solid white;
	border-radius:50%;
	transition: .5s;
}

.overlay i:hover {
	background-color:#A1C6D9;
	border-color:#A1C6D9;
	transition:.5s;
}

.aboutInfo {
	margin:0px;
	display:flex;
	flex-direction:column;
	background-color:white;
	color:#393939;
}

.aboutInfo header {
	display:block;
	margin: 20px auto;
	width:700px;
	text-align: center;
	font-family:'Open Sans';
}

.aboutInfo header h3 {
	font-size:40px;
	margin:40px 0px 10px 0px;
}

.aboutInfo header p {
	line-height: 35px;
}

.aboutInfo .bottomBorder {
	display:block;
	margin:0px auto;
	width:250px;
	height:3px;
	background-color:#A1C6D9;
}

.aboutInfo .aboutGallery {
	display:flex;
	justify-content: space-around;
	margin:125px 0px 100px 0px;
	font-family: 'Open Sans';
}

.aboutInfo .aboutSection {
	text-align: center;
	width: 275px;
}

.aboutSection i {
	color:#A1C6D9;
	font-size:70px;
}

.portfolioContainer {
	display:flex;
	flex-wrap:wrap;
	margin:70px 0px 0px 0px;
	justify-content: center;
}

.portfolioSection {
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	flex-grow: 1;
	width:400px;
	height:300px;
	background-image: url(../img/port.jpeg);
	background-size:cover;
	transition: .5s;
}

.portfolioSection .overlay {
	width:100%;
	height:100%;
	display:flex;
	overflow: hidden;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.45) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.45) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	color:white;
	font-family: 'Open Sans';
	transition: .5s;
}

.portfolioSection .darkOverlay {
	background: -moz-linear-gradient(top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.55) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.portfolioSection .overlay:hover {
	background-color:#999;
}

.portfolioSection h2{
	margin:60px 0px 0px 0px;
	font-size:2em;
	transition: .5s;
}

.portfolioSection .hiddenArea {
	text-align: center;
	margin:0px 60px;
	height:0px;
	opacity: 1;
	transition: .5s;
}

.hiddenArea button {
	cursor:pointer;
	padding: 8px;
	width:150px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
	color:white;
	font-family: 'Open Sans';
	font-size:16px;
	border:2px solid white;
	transition: .5s;
}

.hiddenArea button:hover{
	background-color:#A1C6D9;
	border-color:#A1C6D9;
	color:white;
}

.contactInformation {
	display:flex;
	flex-direction: column;
	justify-content: center;
	padding:50px 0px 50px 0px;
	background-color:#E9E9E9;
	align-items: center;
	font-family: 'Open Sans';
}

.contactInformation header {
	display:block;
	margin: 0px auto;
	width:700px;
	text-align: center;
	font-family:'Open Sans';
	color:#393939;
}

.contactInformation header h3 {
	font-size:40px;
	margin:40px 0px 10px 0px;
}

.contactInformation header p {
	line-height: 35px;
}

.contactInformation .bottomBorder {
	display:block;
	margin:0px auto;
	width:250px;
	height:3px;
	background-color:#A1C6D9;
}

.contactForm {
	margin:0px 0px 20px 0px;
}

.contactForm input {
	margin:0px 0px 20px 0px;
	padding:12px;
	width:220px;
	display:block;
}

.contactForm input::placeholder {
	font-family: 'Open Sans';
	font-size:#333;
}

.contactForm button {
	display:block;
	cursor: pointer;
	padding:10px;
	width:170px;
	font-size:15px;
	margin:10px auto;
	color:white;
	background-color:#A1C6D9;
	border:1px solid #A1C6D9;
	transition: .5s;
}

.contactForm button:hover {
	background-color:#E9E9E9;
	color:#393939;
	border:1px solid #393939;
}

footer {
	display:flex;
	justify-content: space-between;
	background-color:#333;
	color:white;
	font-family: 'Open Sans';
}

footer p {
	margin:20px 15px;
}

footer ul{
	display:flex;
	margin:0px;
	list-style-type: none;
}

footer ul li {
	font-size:2em;
	margin:10px 10px;
}