*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	scroll-behavior: smooth;
}
.hero{
	position: relative;
	width: 100%;
	height: 100%;
	background: #eff4fd;
}

nav{
	display: flex;
	width: 95%;
	margin: auto;
	padding: 10x 0;
	align-items: center;
	justify-content: space-between;
	border-top:2px solid #2ecc71;
	border-bottom:2px solid #2ecc71;
	border-radius: 10px;
}
.logo{
	display: flex;
	width: 65px;
	height: 65px;
}

nav ul li{
	position: relative;
	display: inline-block;
	list-style: none;
	margin: 10px 20px;
}
nav ul li a{
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 1px;
	transition: bottom 1s, left 1s;
}

nav ul li a:hover{
	color: red;
	text-shadow: 1px 2px 3px #212121;
	
}

.details{
	margin-left: 8%;
	margin-top: 15%;
}

.details h1{
	font-size: 50px;
	color: #212121;
}



span{
	color: orange;
}

.details p{
	color: #555;
	line-height: 22px;
}

.details a{
	background: #212121;
	padding: 10px 18px;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	margin: 30px 0;
	border-radius: 5px;
}

.About{
	margin-left: 65%;
	margin-top: 20%;
	margin-bottom: 50px;
}

.About h1{
	font-size: 50px;
	color: #212121;
}

.About pre{
	color: #555;
	line-height: 22px;
}

.Portfolio{
	margin-left: 2%;
	margin-top: 20%;
	margin-bottom: 50px;
}

.Portfolio h1{
	margin-left: 4%;
	font-size: 50px;
	color: #212121;
}

.Portfolio h2{
	margin-left: 6%;
	font-size: 25px;
	color: #212121;
	line-height: 25px;
}

.Portfolio h3{
	text-decoration: underline;
	margin-left: 8%;
	font-size: 17px;
	color: #212121;
	line-height: 40px;
}

.Portfolio pre{
	margin-left: 9%;
	color: #555;
	line-height: 25px;
}

.images{
	width: 45%;
	height: 500px;
	position: absolute;
	top: 100px;
	right: 100px;
}

.images img{
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform : translateX(-50%);
	transition: bottom 1s, left 1s;
}

@keyframes appear{
	from {	
			opacity : 0;
			scale	: 0.8;
		}
	to {	
			opacity : 1;
			scale	: 1;
		}
}

.images:hover .shape{
	bottom: 20px;
}
.images:hover .me{
	left: 45%;
}



.images2{
	width: 45%;
	height: 500px;
	position: absolute;
	top: 750px;
	left: -200px;
}

.images2 img{
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 90%;
	transform : translateX(-50%);
	transition: bottom 1s, left 1s;
	animation: appear linear;
	animation-timeline: view();
	animation-range: entry 0;
}

.images2:hover .shape{
	bottom: 10px;
}
.images2:hover .me{
	left: 87%;
}

.images3{
	width: 45%;
	height: 1300px;
	position: absolute;
	top: 1350px;
	right: 0px;
}

.images3 img{
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform : translateX(-50%);
	transition: bottom 1s, left 1s;
	animation: appear linear;
	animation-timeline: view();
	animation-range: entry 0;
}

.images3:hover .shape{
	bottom: 20px;
}
.images3:hover .me{
	left: 45%;
}




footer {
	background-color:#333;
	color:#F00;
	text-align:center;
	padding-top: 5px;
	padding-bottom: 0px;
	width: 100%;
	bottom: 0;
	position: fixed;
}
.top {
	float:right;
	padding: 15px;
	font-size: 15px;
	color:#C69;
	background-color:#333;
}

.fa {
	padding: 12px;
	width: 15px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	color: white;
}
.fa:hover{
	opacity:	0.7;
}

.fa-facebook {
	background: #3B5998;
}

.fa-instagram {
	background: #125688;
}

.fa-google {
	background: #EA4335;
}
