/* FONTS
font-family: 'Amatic SC', cursive;
font-family: 'Open Sans', sans-serif;
*/

:root {
	--heading:'Amatic SC', cursive;
	--paragraph:'Open Sans', sans-serif;

	--main-color: #f9b800;
}

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	font-family: var(--paragraph);
	color: black;
}

h1, h2, h3, h4, h5, h6, li {
	font-family: var(--heading);
}

h1 {
	font-size: 4em;
}

main {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 20vh 20vh 20vh 20vh 20vh 100vh auto 100vh;
}

.hamburger-button {
	width: 50px;
	height: 50px;
	background: var(--main-color);
	color: rgb(255,255,255);
	position: fixed;
	top: 5px;
	right: 5px;
	font-size: 35px;
	border-radius: 50%;
	text-align: center;
	display: none;
	z-index: 10;
	box-shadow: 2px 2px 2px rgba(150,150,150,0.5);
	cursor: pointer;
}

.hamburger-nav {
	background: var(--main-color);
	position: fixed;
	top: 40px;
	right: 40px;
	z-index: 9;
	width: 50%;
	max-width: 300px;
}

.hide-ham-nav {
	display: none;
}

.hamburger-nav ul {
	display: grid;
	grid-template-columns: 100%;
}

.ham-links {
	font-size: 6vw;
	padding: 5px 20px;
	color: rgb(255,255,255);
	font-weight: bolder;
	text-align: center;
}


nav {
	grid-column: 1 / span 3;
	grid-row: 4 / span 1;
	font-family: var(--heading);
	font-size: 2.5em;
	align-self: end;
}

.navLinks {
	width: 33%;
	text-align: center;
	float: left;
}

#hero {
	grid-column: 1 / span 3;
	grid-row: 1 / span 3;
	width: 100vw;
	height: 100%;
	background: url("../images/hero.png") no-repeat;
	background-size: contain;
	background-position: center top;
}

#about {
	grid-column: 1 / span 3;
	grid-row: 6 / span 1;
}

#work {
	grid-column: 1 / span 3;
	grid-row: 7 / span 1;
}

#contact {
	grid-column: 1 / span 3;
	grid-row: 8 / span 1;
}

.sectionTitles {
	text-align: center;
	margin-bottom: 2%;
}

.imgContain {
	max-width: 170px;
	width: 25vw;
	margin: 0 auto;
}

#amy {
	width: 100%;
	margin: 4%;
	border-radius: 50%;
	justify-content: center;
	box-shadow: 0 0 5px 3px grey;
}

#about p, #contact p {
	padding: 4%;
	font-size: 2.2vh;
}

.projects-section h2 {
	background: var(--main-color);
	color: rgb(255,255,255);
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	padding: 1%;
	margin: 0 0 2%;
	font-size: 2em;
	text-align: center;
}

.projects-section p, #projectIntro {
	margin: 2%;
}

.project-thumbnails {
	width: 100vw;
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
	justify-content: center;
}

.project {
	position: relative;
	height: 275px;
	margin: 1%;
}

.project img {
	width: 250px;
	height: 250px;
	box-shadow: 0 0 5px grey;
}

.projectInfo {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 250px;
	height: 250px;
	background: rgba(249, 184, 0, 0.9);
}

.projectInfo h3,
.projectInfo p {
	color: #fff;
}

.projectInfo h3 {
	font-size: 24px;
}

.projectInfo p {
	font-size: 11.5px;
}

.info-spacer {
	width: 100%;
	height: 4px;
}

.hide {
	display: none;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 250px;
	height: 250px;
	z-index: 2;
}

#contact p {
	text-align: center;
}

#social {
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
}

#social a {
	margin: 10%;
}

.socialButtons {
	width: 100px;
	height: 100px;
}

.github {
	background: url(../images/github.png) no-repeat;
	background-size: contain;
}
.instagram {
	background: url(../images/instagram.png) no-repeat;
	background-size: contain;
}
.codepen {
	background: url(../images/codepen.png) no-repeat;
	background-size: contain;
}
.linkedIn {
	background: url(../images/linkedin.png) no-repeat;
	background-size: contain;
}

.repo {
	width: 250px;
	background: white;
	display: flex;
	justify-content: center;
}
.repo a {
}

.repoImg {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/github.png);
	background-size: contain;
}


/* M E D I A    Q U E R I E S */

@media screen and (min-width: 750px) {
	.ham-links {
		font-size: 40px;
	}
	.navLinks {
		font-size: 2em;
	}

	p {
		font-size: 1.25em;
	}

	.project {
		width: 325px;
		height: 325px;
		margin-bottom: 5vh;
	}

	#projectIntro {
		font-size: 3vh;
		text-align: center;
		margin-bottom: 3vh;
	}

	.overlay {
		width: 300px;
		height: 300px;
	}

	.project img {
		width: 300px;
		height: 300px;
	}

	.projectInfo {
		width: 300px;
		height: 300px;
	}

	.projectInfo h2 {
		font-size: 28px;
	}

	.projectInfo p {
		font-size: 14px;
	}

	.repo {
		width: 300px;
	}

	.socialButtons {
		width: 150px;
		height: 150px;
	}
}

