@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family:Oswald;
	src:url(https://fonts.googleapis.com/css?family=Oswald);
}

html, body {
	text-align:center;
	padding:0;
	margin:0;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	background-color:#D7D3D3;
}

.wrapper {
	margin: 3%;
	padding: 20px;
	background-color:white;
	border-color:black;
	border-style:solid;
	border-width:thin;
}

.header {
	font-size: 45px;
	font-weight:100;
	margin:0px;
	padding-top:30px;
	padding-bottom:30px;
}

.menu{
	border-bottom:thin;
	border-bottom-color:#D7D3D3;
	border-bottom-style:solid;
	padding: 5px;
	
}
.menu ul {	
	text-align:center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menu ul li {
	display:inline-block;
}
.menu ul li a {
	text-decoration: none;
	color: black;
	padding: 30px;
}

.headshot
{
	display:block;
	text-align:center;
	padding: 10px;
	height: 50%;
}
.headshot img {
	max-height: 100%;
	max-width: 100%;
	width: 40%;
	border-color:black;
	border-style:hidden;
	border-width:thin;
	border-radius: 10px;
	box-shadow: 0px 0px 5px 0px #3E3E3E;
	
}

.mainContent
{
	width:100%;
	min-height: 300px;
}

.topThree
{
	width:100%;
}

@media (min-width: 900px)
{
	.topThree
	{
	width:100%;
	display:flex;
	justify-content:space-around;
	}
}

.topThree .education, .topThree .skills, .topThree .personalInterests {
	flex-basis:32%;
	min-width:300px;
}


/*EDUCATION*/
.education
{
	order: 1;
	display:flex;
	flex-direction:column;
	background-color:white;
	border-color:black;
	border-style:solid;
	border-width:thin;
}
.education .institution 
{
	background-color:#D7D3D3;
	margin:5px;
	padding: 10px;
	border-color:black;
	border-style:solid;
	border-width:thin;
}
.education .institution .name
{
	font-family: 'Oswald', sans-serif;
	font-weight:bolder;
}

.education .institution .location, .education .institution .dates, {
	margin: 5px;
}
.education .institution .degree{
	font-family: 'Oswald', sans-serif;
}

/*SKILLS*/
.skills
{
	order: 2;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	background-color:white;
	border-color:black;
	border-style:solid;
	border-width:thin;
	
}

.skills .skill {
	background-color:#D7D3D3;
	text-align:left;
	margin-left:5px;
	margin-right:5px;
	padding-left:5px;
	border-color:black;
	border-style:solid;
	border-width:thin;
	display:flex;
	justify-content:space-between;
	flex-direction:row;
}

/*Personal Interests*/
.personalInterests {
	order: 3;
	display:flex;
	justify-content:flex-start;
	flex-direction:column;
	background-color:white;
	border-color:black;
	border-style:solid;
	border-width:thin;
	
}

.personalInterests .interest {
	background-color:#D7D3D3;
	text-align:left;
	padding-left:5px;
	margin-left:5px;
	margin-right:5px;
	border-color:black;
	border-style:solid;
	border-width:thin;
	display:flex;
	justify-content:space-between;
	flex-direction:row;
}


/*Experience*/
.experience 
{
	display:flex;
	flex-direction:column;
	padding: 0px;
	background-color:white;
	/*border-color:black;
	border-style:solid;
	border-width:thin;*/
	
	
}
.experience .Company
{
	background-color:#D7D3D3;
	border-color:black;
	border-style:solid;
	border-width:thin;
	margin:10px;
	padding:20px;
}
.experience .name {
	font-family: 'Oswald', sans-serif;
	font-weight:bolder;
}

.experience .location, .experience .dates {
	/*display:inline;*/
	padding: 10px;

}

.experience .content
{
	text-align:justify;	
}












.footer
{
	text-align:center;
	padding-top:10px;
	margin:15px;
	border-top:thin;
	border-top-color:#D7D3D3;
	border-top-style:solid;
}
