html, body {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	background-image: url("background.jpg");
	background-size: 100% 100%;
	background-attachment: fixed;
	color: white;
}
@keyframes name {
	from {
		color: black;
		margin-left: -150vw;
	}
	to {
		color: white;
		margin-left: 0vw;
	}
}
@keyframes occupation {
	from {
		color: black;
		margin-left: 70vw;
	}
	to {
		color: white;
		margin-left: 0vw;
	}
}
a {
	text-decoration: none;
	color: white;
}
a:hover, #submit:hover {
	color: red;
}
.col {
	float: left;
}
#menuBar {
	width: 100%;
	height: 2em;
	font-size: 1.5em;
	padding-top: 1.4em;
	padding-bottom: 0.6em;
	background: rgba(50, 50, 50, 0.8);
	position: fixed;
	top: 0;
}
.menuItem {
	float: left;
	width: 20%;
	text-align: center;
}
#myName, #name {
	margin-top: 4em;
	text-align: center;
	font-size: 2.25em;
}
#myName {
	animation-name: name;
	animation-duration: 4s;
}
#occupation {
	text-align: center;
	font-size: 1.1em;
}
#occupation {
	animation-name: occupation;
	animation-duration: 4s;
}
#location {
	text-align: center;
	font-family: 'Dancing Script', cursive;
	font-size: 2em;
}
#quote {
	text-align: center;
	font-family: 'Indie Flower', cursive;
	font-size: 2em;
}
#info {
	text-align: center;
	font-size: 1.25em;
}
.row {
	text-align: center;
	font-size: 1.25em;
	width: 100%;
}
.row h3 {
	padding-top: 1em;
	padding-bottom: 1em;
	margin: 0;
	background: rgba(55, 55, 55, 0.7);
	font-size: 1.7em;
}
#portfolio a {
	font-size: 1.3em;
}
.details {
	margin: 0;
	padding: 0;
}
.details p {
	padding: 3vw 3vw 3vw 3vw;
	margin: 0;
	text-align: left;
}
.details a {
	color: red;
}
.details a:hover {
	color: red;
}
.details b {
	color: yellow;
}
#contactInfo {
	padding-bottom: 5vh;
	font-size: 1.5em;
	text-align: center;
	width: 90%;
	padding-left: 5vw;
	padding-right: 5vw;
}
iframe {
	margin-bottom: 1em;
}
#copyright {
	position: fixed;
	right: 1vw;
	bottom: 1vh;
	color: whiteSmoke;
}
#contactForm {
	width: 60%;
	padding: 2% 20% 2% 20%;
	float: left;
	text-align: left;
}
label {
	float: left;
}
input, textarea {
	width: 60vw;
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	box-shadow: 5px 5px 2.5px rgba(50, 50, 50, 0.5);
}
input, textarea {
	font-size: 1.2em;
}
textarea {
	padding-right: 0;
}
#submit {
	width: 15vw;
	height: 5vw;
	font-size: 1.1em;
	background-color: forestGreen;
	border: 0;
	color: white;
	font-weight: bold;
	cursor: pointer;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#validation {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#formProcessedMessage {
	text-align: center;
	font-size: 1.5em;
}