@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}
body{
	background: linear-gradient(rgba(0,0,102,0.75),rgba(0,0,102,0.65)),url('https://images.pexels.com/photos/1089440/pexels-photo-1089440.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500');
	background-position:center;
	background-size:cover;
	padding: 10px;
	display:grid;
	place-items:center;
	height:100vh;
	overflow: hidden;
}
::-webkit-scrollbar{
	display:none;
}
.box{
	width: 90%;
	margin: auto;
	height: auto;
	border-radius: 5px;
	padding: 5px;
	background: rgba(0,0,0,0.55);
	border: 2px solid #111;
}
header{
	display: flex;
	height: 10vh;
	line-height: 10vh;
	border-radius:5px 5px 0 0;
	padding: 3px;
	background: rgba(0,0,0,0.75);
}
header .left{
	width: 70%;
	margin: auto;
	display: inline;
}
header .left a{
	text-decoration:none;
	color:#3fe014;
	padding: 5px;
	text-align: left;
}
header .right{
	width: 30%;
	margin: auto;
	float:right;
	text-align: right;
}
header .right a{
	text-decoration:none;
	color:#3fe014;
	padding:5px;
}
.home{
	display: grid;
	place-items: center;
	margin: auto;
	height: 60vh;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr 1fr;
	background: rgba(0,0,52,0.55);
	border-radius: 0 0 5px 5px;
}
.home .left{
	float:left;
}
.home .left img{
	transform: rotate(-20deg);
	transition: 2000ms ease;
	border-radius: 100%;
	overflow: hidden;
	width: 100%;
	height:100%;
}
.home .right{
	float:right;
	color:#3fe014;
}
.home .right h2{
	text-transform:capitalize;
	letter-spacing:1px;
	margin-bottom: 10px;
}
.home .right p{
	margin-bottom: 10px;
}
.home .right .exp-btn{
	padding:6px 10px;
	cursor:pointer;
	background: rgba(0,0,102,0.35);
	color:#3fe014;
	border-radius:3px;
	margin: 5px 10px;
	outline:none;
	box-shadow:none;
	border:none;
	border-top:2px solid aqua;
	border-bottom:2px solid aqua;
}
#CV{
	position:fixed;
	top:0;
	left:-110%;
	width: 100%;
	height:100%;
	transition: 2000ms ease;
	overflow:scroll;
	background:transparent;
	text-align:center;
}
#CV iframe{
	width:100%;
	height:90%;
	margin:auto;
	border-radius: 4px;
}
#CV .close-btn{
	padding:6px 10px;
	cursor:pointer;
	background: #111;
	color:#3fe014;
	border-radius:3px;
	margin: 3px auto;
	outline:none;
	box-shadow:none;
	border:none;
	border-top:2px solid aqua;
	border-bottom:2px solid aqua;
}
a{
	text-decoration:none;
	color:inherit;
}
span{
	font-size: medium;
	font-weight:bold;
}
.fa,.fas,.far{
	border: 1px solid #3fe014;
	padding: 5px;
	border-radius: 100%;
}
@media only screen and (max-width:768px){
	body{
		overflow:scroll;
	}
	.home{
		height:auto;
		overflow:scroll;
		padding: 15px;
	}
	.box{
		height:auto;
		overflow:scroll;
	}
	header{
		display:block;
		height: auto;
	}
	header .left,header .right{
		width:100%;
		text-align:center;
		display:block;
	}
	header .right a{
		border-top: 1px solid aqua;
		border-bottom: 1px solid aqua;
		padding: 5px;
	}
	header .right::after{
		border-bottom: 1px solid aqua;
		content: '&nbsp;';
		padding:5px;
	}
	header .right::before{
		border-top: 1px solid aqua;
		content: '&nbsp;';
		padding:5px;
	}
}