* {
	box-sizing: border-box;
}

body {
	font-family: lato, sans-serif;
	font-size: 100%;
}

p {
	font-size: 20px;
}

a:link,
a:visited,
a:active {
	color: #f8981c;
}

h1 {
	font-size: 40px;
}

.navi {
	font-weight: bolder;
	font-family: lato, sans-serif;
	text-transform: uppercase;
	font-size: 20px;
}


/*Header*/
.header {
	display: flex;
	justify-content: space-between;
}

.logo {
	padding-top: 70px;
}

.name-tag {
	padding-top: 70px;
	color: #747704;
	text-transform: uppercase;
	text-align: right;
	letter-spacing: 2px;
	max-width: 100%;
}

.name {
	font-weight: 100px;
}

hr {
	border-top: 5px solid #bcbbbb;
}

.jumbo-text {
	width: 100%;
	min-height: 200px;
	height: 100%;
	background-image: url(../images/woman-hand-smartphone-desk.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	text-align: right;
	letter-spacing: 20px;
	text-shadow: 5px 5px 15px #333;
	padding-top: 10px;
}

/*Featured Work Section*/
h2 {
	color: #bcbbbb;
	letter-spacing: 5px;
}

.project-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.project {
	color: #747704;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px;
	border-radius: 5px;
}

.project:hover {
	background-color: #eee;
	cursor: pointer;
}

.project-thumbnail {
	margin: auto;
	width: 100%;
	border-radius: 2.5%;
}

/* About Me */
.gray {
	background-color: #eee;
}

#mypic {
	width: 25%;
	float: left;
	border-radius: 2.5%;
	margin: 20px;
}

.about-text {
	padding: 20px;
}

/* Contact */
input {
	margin: 10px;
}

.button {
	width: 100px;
}

textarea {
	padding: 10px;
	width: 100%;
	height: 200px;
	font-family: sans-serif;
	font-size: 16px;
}

.flash {
	font-size: 12px;
	color: red;
}

/* Modals */
.description {
	font: 18px lato, sans-serif;
	width: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.skills-used {
	font-size: 16px;
	font-style: italic;
}

.project-image, .project-description {
	padding: 10px;
	max-width: 49%;
}

.project-comments {
	padding: 10px;
	min-width: 100%;
}

/* Break Points */
@media screen and (max-width: 380px) {
	.jumbo-text {
		min-height: 150px;
	}
}

@media screen and (max-width: 600px) {

	.project {
		width: 100%;
	}

	.logo {
		max-width: 50px;
	}
}

@media screen and (min-width: 601px) and (max-width: 990px) {

	.project {
		width: 50%;
	}

	.logo {
		max-width: 75px;
	}
}