html {
	background-image: url("../img/aboutMeBG4.jpg");
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
	width: 100vw;
	background-size:cover;
  	background-attachment: fixed;
}

header {
	color:white;
	font-size:36pt;
	font-family: Tahoma, Geneva, sans-serif;
	text-decoration:bold;
	position:absolute;
  	top:20%;
  	left:50%;
  	transform:translate(-50%, -50%);
  	-webkit-animation:glow 5s ease-in 1;
  	-webkit-animation-delay:3s;
  	animation:glow 5s ease-in 1;
  	animation-delay:0.5s;
}

@-webkit-keyframes glow {
	0% {
	
	}
	25% {
		text-shadow:0 0 20px white, 0 0 20px white;
	}
	100% {
		
	}
}

a, a:hover {
	text-decoration:none;
	color:white;
	font-family: Tahoma, Geneva, sans-serif;
}

nav {
	position:fixed;
	left:5%;
	top:3%;
	font-size:18pt;
	transition: 0.2s;
}

nav a {
	margin-right:50px;
}

a span {
	margin-right:-7px;
	display:inline-block;
	transition:all 0.5s;
	-webkit-animation: loadBounce 1s 1;
	animation: loadBounce 1s 1;
}

.disabled {
	color:grey;
	display:inline-block;
	/*pointer-events: none;*/
	text-decoration:none;
}

#projects span {
	animation-delay:0.1s;
}

#aboutMe span {
	animation-delay:0.2s;
}

#resume span {
	animation-delay:0.3s;
}

#contactMeBtn span {
	animation-delay:0.4s;
}

@keyframes loadBounce {
	0% {
		transform: translateY(0);
		margin-left:0;
	}
	25% {
		transform:translateY(-10px);
		margin-left:15px;
	}
	100% {
		transform: translateY(0);
		margin-left:0;
	}
}

#content {
	width: 900px;
	margin:auto;
	margin-top:300px;
	margin-bottom:100px;
	background-color: rgba(0, 0, 0, 0.4);
	padding:0;
	color:white;
	padding: 50px;
	font-family: Tahoma, Geneva, sans-serif;
	text-align:center;
}

p {
	margin-top:50px;
	font-size:16pt;
	text-align:left;
}

#contactMe {
	margin-top:50px;
	margin-bottom:0px;
	text-align:center;
}

input, textarea, input:focus, textarea:focus {
	background:none;
	color:white;
	border:none;
	margin-bottom:15px;
	width: 300px;
	border-radius:0;
	border-bottom: 1px solid white;
	font-size:12pt;
	font-family:Tahoma, Geneva, sans-serif;
	outline: none;
}
textarea {
	height:225px;
	resize:none;
}
input[type="submit"] {
	border:none;
	font-size:16pt;
	margin-top:15px;
}