/*Master styles*/

body {
	margin: 0px;
	font-family: arial;
	/*background-color: #dedede;*/
	background-color: white;
	font-size: 15px;
	height: 100%;
	min-height: 100%;
}

/*Nav styles*/
.nav-wrapper {
	position: relative;
	top: 0;
	height: 75px;
	background-color: #060606;
}

.left-side {
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 12px;
	width: 5%;
	top: 50%;
	height: 86px;
	font-size: 0.9em;
	text-transform: uppercase;
}

.left-side a {
	padding-right: 12px;
}

.right-side {
	float: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 12px;
	width: 15%;
	top: 50%;
	height: 86px;
	font-size: 0.9em;
	text-transform: uppercase;
}

.nav-link-wrapper {
	height: 35px;
}

.nav-link-wrapper a {
	color: gray;
	text-decoration: none;
	transition: color 0.1s;
}

.nav-link-wrapper a:hover {
	color: #dedede;	
}

.nav-link-wrapper-active {
	color: white;
	height: 35px;
}

.nav-link-wrapper-active a:hover {
	color: #dedede;	
}

.nav-link-wrapper-active a {
	color: white;
	text-decoration: none;
	transition: color 0.1s;
}

.nav-link-wrapper-active a:hover {
	color: #dedede;	
}

/*Portfolio styles*/

.top-header {
	width: 100%;
	height: 75px;
	text-align: center;
	border-bottom: solid whitesmoke;
}

.content-wrapper {
	height: 1100px;
}

.left {
	padding: 64px;
	float: left;
	width: 50%;
}

.right {
	padding: 64px;
	float: right;
	width: 25%;
}

.home-bottom {
	float: left;
	width: 50%;
}

.home-projects {
	padding-left: 24px;
	border-left: solid whitesmoke;
	border-bottom: solid whitesmoke;
}

.home-intro {
	border-bottom: solid whitesmoke;
	padding-bottom: 24px;
}

.home-languages {
	border-bottom: solid whitesmoke;
}

.home-contact {
	border-bottom: solid whitesmoke;
}

.project-info {
	width: 60%;
	margin: auto;
	display: grid;
	justify-content: center;
	padding: 24px;
	margin-top: 24px;
	margin-bottom: 24px;
	border: solid black 1px;
	box-shadow: 2px 2px #a6a6a6;
}

.my-projects h1 {
	text-decoration: underline;
	text-shadow: 1px 1px #a6a6a6;
	text-align: center;	
}

.my-projects p {
	font-size: 16px;
	text-align: center;	
	max-width: 500px;
}

.my-projects {
	font-size: 12px;
	color: #060606;
	display: grid;
	justify-content: center;
	text-align: center;
	width: 100%;
}

@media only screen and (max-device-width : 460px) and (max-device-height : 1800px) {
  #contact-page {
    height: 1900px;
  }
}

#experience-page {
	height: 3000px;
}



