header{
	position: relative;
	padding-bottom: 45px;
}

#headerIMG{
	width: 100%;
	border-radius: 20px 20px 0px 0px;
}

#profileIMG{
	min-width: 100px;
	max-width: 200px;
	width: 20%;
	border-radius: 50%;
	border: 6px solid #FFF;
	display: block;
	position: absolute;
	transform: translateY(-50%);
	left: 3%;
}

header a{
	display: block;
	position: absolute;
	left: calc(25% + 25px);
	margin-top: 10px;
	padding: 10px;
	border: 2px solid #000;
	border-radius: 20px;
}

@keyframes nameAnimation{
	0% {right: 0%; opacity: 0;}
	100% {right: 2%; opacity: 1;}
}

#nameDiv{
	display: block;
	position: absolute;
	top: 10%;
	color: white;
	animation-name: nameAnimation;
	animation-duration: 3s;
	right: 2%;
}

#nameDiv h1{
	text-decoration: underline;
  text-underline-offset: 5px;
	text-shadow: 2px 2px 2px black;
	font-size: 40px;
	margin-bottom: 0px;
	text-align: left;
}

#nameDiv h2{
	margin-left: 0px;
	text-shadow: 2px 2px 2px black;
	font-size: 35px;
	text-align: left;
}

@media screen and (max-width: 600px){
	#nameDiv h1{
		font-size: 22px;
	}
	#nameDiv h2{
		font-size: 17px;
	}
}

