
body{
	box-sizing:	 border-box;
	margin: 0;
	padding:  0;
}
section{
	background-color: white;
	box-shadow:  5px 5px 20px #C4C0C0;
}

.hero{
	background-color: #3FAED3;
	height: 100vh;
	color: white;
	font-size: 40px;
}
nav{
	display: flex;
	justify-content: space-between;
}
ul{
	display: flex;
	list-style: none;
	width: 500px;
	justify-content: space-around;
	font-size: 30px;
}
ul.show{
	display: block;
}
li{
	text-decoration: none;
	
}
h1{
	font-size:90px;
	margin: 0;
}
h2{
	font-size: 50px;
	margin: 0;
	/*padding: 15px;*/
}
p{
	margin: 0;
	font-size: 30px;
	font-weight: 300px;

}
.subtext{
	font-size: 15px;
	font-weight:  300;
}
.hero-area{
	display: flex;
	height: 100%;
	justify-content: space-between;
	align-items: center;
}
.hero-text{
	margin-left:  80px;
	margin-bottom: 200px;
	width: 100%;
}
.logo{
	height:  80px;
	margin:  30px;
}
footer{
	height: 500px;
	background-color: black;
	color: white;
	text-align:  center;
}

.button{
	width: 200px;
	height: 60px;
	border-radius: 40px;
	background-color: #C787FF;
	text-align: center;
	padding-top: 5px;
	margin-top: 60px;
	box-shadow: solid 3px #2A0401;
}
.button:hover{
	background-color:#FF1C05;
}
.button:active{
	background-color:#A9A9A9;
	color:#808080;
}
.socials{
	padding-bottom :200px;
	margin-right: 10px; 
}
.social{
	margin: 20px;
}
.sub-section{
	display: flex;
	justify-content: space-around;
	padding: 80px;
	background-color:#DADBF2;
}
.sub-section-alternative{
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 80px;
}
.headshot{
	width: 200px;
	border-radius: 50%;
	box-shadow:  5px 5px 20px #C4C0C0;
}
.headshot-container{
	display: flex;
	align-items: center;
}
.information{

}
.project-card{
	width: 200px;
	height: 500px;
	box-shadow:  5px 5px 20px #C4C0C0;
	margin: 10px;
}
.project-container{
	display:  flex;
	justify-content: space-around;
}
.container{
	padding:  30px;
}
@media only screen and (max-width: 1000px){

	.project-container{
		display: flex;
		flex-wrap: wrap;
	}

}

.project-image{
	margin-top: 25px;
	width: 200px;
	border-radius: 125px;
}
hr{
	margin-left: 20px;
	margin-right: 20px;
}
.project-link{
	text-decoration:  none;
	color: #C787FF; ;
}
a{
	text-decoration:  none;
	color: white;
}
.lead{
	color: white;
}
.hamburger{
	display: none;
}
.hamburger:focus{
	outline: 0;
}
@media only screen and (max-width: 1000px){
	.hamburger{
		display: block;
		border: 0;
		background-color:  transparent;
		color: white;
		font-size: 30px;
		margin: 20px;
		align-self:  flex-end;
	}
	ul{
		display: none;
		background-color: #5568C4;
	}
	ul.show{
		display: block;
	}
	nav{
	
		display:  flex;
		flex-direction: column-reverse;
		background-color:#B16FC4;
	}
	.logo{
		display: none;
	}
	.socials{
		display:  flex;
		flex-direction:  inline-flex;
		padding-top: 600px;
		margin-left:  80px;
		position:  absolute;

	}

}
@media only screen and (max-width: 300px){
	.hero-area{
		margin-left: 0px;
	}
	.socials{
		margin-left: 0px;
	}
}
