body {
	margin: 0;
	padding: 0;
	background-image: url('../images/BG1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	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;

	
}

.hello{
	font-size: 48pt;
}

.hello_wrap {
	float: right;
	margin: 15vh 6vh 0 0;	
	position: relative;
    animation: animateright ease 2.5s;
}

@keyframes animateright{
	0%{
		right:-200px;
    	opacity: 0;
	}

	100%{
		right:0;
		opacity: 1;
	}

	
}


.hello_wrap p{
	font-size: 18pt;
	margin-top: -2vh;
}

.btn {
	border: solid black;
  	background-color: black;
  	font-weight: lighter;
  	color: white;
  	padding: 1.5vh 5vh;
  	font-size: 16px;
  	cursor: pointer;
}

.btn:hover {
	color: orange;
}

.footer {
	float: right;
	text-align: right; 
	margin-top: 25vh;

}

.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;
}