*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.navbar{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 30px;
	color: whitesmoke;
}
.navigations{
	display: flex;
	align-items: center;
}
.navigations li{
	margin: 0 30px;
}
p{
	color: #00ff00;
}
.navigations li i{
	padding: 2px;
}
a{
	text-decoration: none;
	color: whitesmoke;
	font-weight: bold;
}
a:hover{
	text-decoration: underline;;
	color: #00ff00;
}
ul{
	list-style: none;
}
.menu-btn{	
	position: absolute;
	top: 30px;
	right: 30px;
	width: 30px;
	cursor: pointer;
	display: none;
}
header{
	width: 100vw;
	height: 100vh;
	background-image: url('images/homebg.jpg');
	background-position: bottom;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg{
	color: whitesmoke;
	text-align: center;
}
.bg h2{
	margin-left: 5px;
	text-align: left;
	margin-top: 100px;
	font-size: 4vmin;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
}
.bg h1{
	font-size: 7vmin;
	margin-top: 8px;
	margin-left: 40px;
	text-shadow: 2px 1px 2px #000;
}
.bg h5{
	text-align-last: right;
	font-size: 2vmin;
	margin-top: 5px;
	text-shadow: 1px 1px 1px #000;
	margin-bottom: 30px;
}
.socialicon li{
	list-style: none;
	margin: 10px 15px;
	display: inline-block;
	font-size: 1em;
	padding: 10px 10px;
	color: #fff;
	border: 1px solid #999;
	border-radius: 50%;
}
.socialicon li:hover{
	background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 50% 50%/150% 150% no-repeat;
	transition: ease-in-out 0.3s;
}
#linkedin:hover{
	background: #000099;
	transition: ease-in-out 0.3s;
}
#insta:hover{
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	transition: ease-in-out 0.3s;
}
#whatsapp:hover{
	background: #009900;
	transition: ease-in-out 0.3s;
}
#git:hover{
	background: #000;
	transition: ease-in-out 0.3s;
}
.socialicon li a:hover{
	color: #fff;
	font-weight: bold;
}
.footer{
	position: absolute;
	bottom: 2px;
	color: #00ff00;
	right: 0;
	padding: 5px;
	font-size: 1vmin;
}
@media screen and (max-width: 600px) {
   .navbar{
  	padding: 0;
  }
  .menu-btn{
  	display: block;
  }
  .navigations{
  	flex-direction: column;
  	width: 100%;
  	height: 100vh;
  	justify-content: center;
	background-color: rgba(000,000,000,0.8);
  	margin-top: -900px;
  	transition: all 0.8s ease;

  }
   .navigations li{
   	margin:30px auto;
   }
   .mobile-menu{
   		margin-top: 0px;
   }


}