body {
	margin: 0;
	padding: 0;
	font-family: 'roboto';
}
.header img {
	width: 13vh;
	margin: 0 0 0 2vh;
}

.menu {
	float: right;
	margin: -9vh 0 0 0;  
	background-color: white;
}

.menu a {
	text-decoration: none;
	color: black;
	padding-left: 1vh;
	padding-right: 1vh; 
	margin: 10vh 0 0 0;
	font-weight: normal;
	font-size: 12pt;

}

.menu ul li {
	list-style: none;
}

.menu li {
	display: inline;
}

.menu a:hover {
	color: orange;
}

.menu a.active {
	color: orange;
	
}

.me {
	float: left;
}

.me img{
	width: 380px;
	margin:5vh 3vh 3vh 6vh;
	position: relative;
    animation: animateleft ease 2.5s;
}

@keyframes animateleft{
	0%{
		left:-200px;
    	opacity: 0;
	}

	100%{
		left:0;
		opacity: 1;
	}

	
}
.bio{
	margin: 32vh 5vh 0 6vh;
	position: relative;
    animation: animateright ease 2.5s;
}

@keyframes animateright{
	0%{
		right:-200px;
    	opacity: 0;
	}

	100%{
		right:0;
		opacity: 1;
	}

	
}

.bio h1{
	margin-top:-1vh;
}


.footer {
	float: right;
	text-align: right; 
	margin-top: 10vh;
	margin-right: 2vh;

}

.footer p{
	font-weight: normal;
	font-size: 12pt;
}

.sosmed img{
	width: 3vh;
	margin-left: 1.5vh;
}

.sosmed img:hover {
	transform: scale(1.15);
	transition: transform 0.8s;
}
