body {
	margin: 0;
	padding: 0;
	font-family: 'roboto';
}

.wrapper{
	max-width: 1200px;
	margin: 0 auto;
}

.header img {
	width: 17vh;
}
.menu {
	float: right;
	margin: -10vh auto;  
}

.menu a {
	text-decoration: none;
	color: black;
	padding-left: 4vh; 
	font-weight: normal;
	font-size: 16pt;

}

.menu ul li {
	list-style: none;
}

.menu li {
	display: inline;
}

.menu a:hover {
	color: orange;
	font-size: 21pt;
    animation: animatemenu ease 0.5s;
}

@keyframes animatemenu{
	0%{
		font-size: 18pt;
    	opacity: 1;
	}

	100%{
		font-size: 21pt;
		opacity: 1;
	}	
}
.menu a.active {
	color: orange;

}

.body img{
	width: 45%;
	float: left;
	margin: -4vh 0 0 5vh;
	border-right: 5px solid black;
}

.body h1 {
	margin-top:20vh;
    margin-left:650px;
	position: relative;
    animation: animateright ease 2.5s;
}

@keyframes animateright{
	0%{
		right:-200px;
    	opacity: 0;
	}

	100%{
		right:0;
		opacity: 1;
	}

	
}

#name {
    margin-top:30px;
    margin-left: 50px;
    position: absolute;
    padding: 10px 20px 10px 20px;
}

#email{
	margin-top:30px;
    margin-left: 280px;
    position: absolute;
    padding: 10px 20px 10px 20px;
}

#message {
	margin-top:100px;
    margin-left: 50px;
    position: absolute;
    padding: 10px 264px 80px 20px;
}


.send {
	border: 1px solid orange;
  	background-color: orange;
  	font-weight: lighter;
  	color: black;
  	font-size: 12px;
  	cursor: pointer;
  	margin-top:250px;
    margin-left: 50px;
    position: absolute;
    padding: 0 40px 0px 40px;
}

.send:hover {
	border: 1px solid black;
  	background-color: black;
  	font-weight: lighter;
  	color: orange;
  	font-size: 12px;
  	cursor: pointer;
}

.footer {
	float: right;
	text-align: right; 
	margin-top: 9vh;
}

.footer p{
	font-weight: normal;
	font-size: 12pt;
}

.sosmed img{
	width: 3%;
	margin-left: 1.5vh;
}

.sosmed img:hover {
	transform: scale(1.15);
	transition: transform 0.8s;
}