* {
	box-sizing: border-box;
}

body {
	font-family: 'PT Serif', serif;
	text-align: center;
	margin: 0px;
}

nav, h1, h2 {
	font-family: 'Poppins', sans-serif;
}

nav {
	background-color: #013243;
	border-bottom: silver 3px solid;
	padding: 0px 0px;
	color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

nav p:hover, nav p:focus {
	cursor: pointer;
	text-decoration: underline;
}

.underline {
	text-decoration: underline;
}

nav p {
	margin: 0px;
	font-size: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: middle;
	color: white;
}

.hello {
	margin-top: 15px;
	margin-left: 10px;
	margin-right: 15px;
	display: flex;
	justify-content: space-around;
	max-width: 80%;
}

.short-headline {
	font-size: 23px;
	width: 80%;
}

.name {
	background-color: #752B34;
	width: 30%;
	color: white;
	font-size: 17px;
}

main {
	margin-top: 90px;
	margin-bottom: 50px;
}

.headline{
 	min-height: 250px;
	max-height: 400px;
	color: black;
	display: flex;
	flex-direction: column;
}

.hero-image {
	max-height: 100px;
	max-width: 100px;
	border-radius: 100%;
}

h1 {
	margin-top: 35px;
	margin-bottom: 15px;
	font-size: 25px;
	align-self: center;
}

h2 {
	border-top: 3px silver solid;
	border-bottom: 3px silver solid;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 30px;
	margin-top: 20px;
	padding: 7px;
	font-size: 18px;
}

.project-wrapper img {
	height: 100%;
	width: 80%;
}

.project-wrapper p {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

h3 {
	background-color: white;
	width: 100%;
	margin-bottom: 10px;
	z-index: 5;
}

nav p {
	padding: 10px;
}

.project-links {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	padding-top: 0px;
}

.projects, .about-me, .contact {
	margin-left: 30px;
	margin-right: 30px;
}

.landscape {
	max-height: 700px;
	max-width: 1145px;
	height: auto;
	width: auto;
	border: black solid 2px;
	border-radius: 5px;
}

.mobile {
	height: 200px;
}

a {
	text-decoration: none;
	color: inherit;
}

.project-links p {
	border: #013243 solid 2px;
	padding: 3px;
	margin-top: 0px;
	color: #013243;
	margin-left: 15px;
	margin-right: 15px;
}

.project-links p:hover{
	background-color: #013243;
	color: white;
	cursor: pointer;
}

.technologies {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0px;
	padding: 0px;
}

.technologies img {
	height: 36px;
	width: auto;
	padding: 5px;
	transition-property: height;
	transition-duration: 1s;
}

.technologies img:hover {
	height: 56px;
}

.contact img {
	max-height: 25px;
	max-width: 25px;
	height: auto;
	width: auto;
	margin-right: 10px;
}

.contact p {
	text-align: left;
	vertical-align: center;
}

.contact p:hover{
	cursor: pointer;
	text-decoration: underline;
}

/*
MEDIA QUERIES
*/

/*screen size small*/
@media only screen 
    and (min-width: 322px) {    	
}  

/* screen size medium*/
@media only screen 
and (min-width: 645px) {
	body {
		font-size: 1.3em;
	}

	.hero-image {
		max-height: 150px;
		max-width: 150px;
		border-radius: 100%;
	}
	.hello {
		margin-top: 15px;
		margin-left: 20px;
		margin-right: 105px;
		display: flex;
		justify-content: space-around;
	}

	.technologies img {
		height: 42px;
	}

	.contact p {
		text-align: center;
	}
} 

/* screen size large */
@media only screen 
and (min-width: 1000px) {
	nav p, .name {
		font-size: .75em;
	}

	body {
		font-size: 1.6em;
	}

	.about-me, .projects, .contact {
		text-align: center;
		max-width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.technologies img {
		height: 52px;
	}
} 


