@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Poppins', sans-serif;	
	position: relative;
	background: linear-gradient(#a6ebe7,#30cde8) no-repeat;	
}

nav{
	font-family: 'Poppins', sans-serif;
	background-color:white ;
}
ul.navbar-nav li a.nav-link:hover{
	text-decoration: underline solid rgb(218, 112, 214) 3px;
	transition: all .3s;		
}

.hero{
	height: 100vh;
	align-items: center;
	padding-top: 35vh;
} 
.icons{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 30px;
	padding-top: 20px ;
	color: black;
}
.bi-facebook, .bi-instagram, .bi-twitter, .bi-linkedin, .bi-envelope{
	padding-right: 15px;
	color: black;
}
.bi-facebook:hover, .bi-instagram:hover, .bi-twitter:hover, .bi-linkedin:hover, .bi-envelope:hover {
	color: palevioletred;
	transition: all .3s;
}
.typing::after{
	content: "";
	width: 1px;
	height: 5px;
	border-right: 2px solid black;
	animation: blink 0.7s infinite ease ;
}
@keyframes blink {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

main{
	height: 100vh;
	display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-snap{
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	height: 100vh;
}
section{
	scroll-snap-align: start;
	height: 100vh;
	display: flex;
	align-items: center;
}
.glass{
    background: white;
    height: 80vh;
    width: 70%;
    background: linear-gradient(
        to right bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    border-radius: 2rem;
	z-index:3;
	backdrop-filter: blur(100rem);
}
.about-title h1{
	padding-top: 10%;
	color:rgba(0, 255, 200, 0.7);
	text-shadow: 1px 1px rgb(231, 139, 240);
}
.about-subtitle{
	font-size: 25px;
	position: relative;
	color:rgba(0, 205, 246, 0.9);
	text-shadow: 2px 2px rgb(231, 139, 240);
	text-align: center;

} 
.circle1,.circle2{
    position: absolute;
    background:white;
    background: linear-gradient(
        to right bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)
    );
    height: 15rem;
    width: 15rem;
	z-index: -1 ;
	border-radius: 10rem;
}
.circle2 {
	display: flex;
    top: 2%;
    right: 20%;
	background-color:rgb(218, 112, 214);
}
.circle1{
	display: flex;
    bottom: 3%;
    left: 20%;
	background-color:rgb(216, 191, 216);
}
.skills{
	padding-left: 0%;
	justify-content: center;
	list-style-type: none;
}

.cv{
	color:rgb(218, 112, 214);
	border-color:rgb(218, 112, 214);
}
.cv:hover{
	background: linear-gradient(
        to right bottom, rgb(151, 226, 241),rgb(231, 139, 240))!important;
    border-color: rgb(231, 139, 240) !important;
	color: white;
	border-radius: 2rem;
	transition: all .4s;	
}
/* ====== Card flip ======= */
.card-container{
	padding-top: 10px;
	width: 300px;
	height: 100px;
}
.align-cards{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card{
	width: 100%;
	height: 100%;
	transition: transform 1s ease-in-out;
	transform-style: preserve-3d;
}
.card-container:hover .card{
	transform: rotateY(180deg);
}
.card figure{
	width: 100%;
	height: 100%;
	position: absolute;
	margin: 0;
	border-radius: 5px;
	backface-visibility: hidden;
	padding-top: 15px;
	text-align: center;
}
.card .front{
	background: linear-gradient(
        to right bottom, rgb(151, 226, 241,0.5),rgb(231, 139, 240,0.8))!important;
	color:rgba(0, 255, 200, 0.7);
	text-shadow: 1px 1px rgb(207, 39, 223);
}
.card .back{
	background: linear-gradient(
        to right bottom, rgb(0, 205, 246),rgba(231, 139, 240))!important;
	color:rgba(246, 246, 246, 0.9);
	text-shadow: 2px 2px rgb(228, 156, 235);
	transform: rotateY(180deg);
}
.fb{
	color:black;
	border-color:black;
	padding-left: 20px;
	padding-right: 20px ;
}
.insta{
	color:black;
	border-color:black;
	margin-top: 20px;
}
.twitter{
	color:black;
	border-color:black;	
	padding-left: 35px;
	padding-right: 35px ;
	margin-top: 20px;

}
.linkedin{
	color:black;
	border-color:black;	
	padding-left: 30px;
	padding-right: 30px ;
	margin-top: 20px;

}
.mail{
	color:black;
	border-color:black;	
	padding-left: 50px;
	padding-right: 50px ;
	margin-top: 20px;

}
.fb:hover {
	background-color: rgb(78, 116, 194) !important;
	transition: all .3s;
	color: white;
}
.insta:hover{
	background: linear-gradient(to right top, rgb(253, 244, 151) 0%, rgb(253, 244, 150) 5%, rgba(253, 89, 73) 45%,rgba(214, 36, 159) 60%,rgba(40, 90, 235) 90%)!important;
	transition: all .3s;
	color: white;
}
.twitter:hover{
	background-color: rgb(29, 161, 242)!important;
	transition: all .3s;
	color:white;	
}
.linkedin:hover{
	background-color: rgb(0, 119, 181)!important;
	transition: all .3s;
	color:white;
}
.mail:hover{
	background-color: palevioletred !important;
	transition: all .3s;
	color: white;
}

#about{
	height:100vh;
}
@media (max-width:850px) {
	.glass{
		height: 100%;
		width: 100%;
		box-shadow: 0;
		align-items: center;
	}
}
@media (max-width:410px) {
	.hero{
		height: 100%;
		width:100%
	}
	.glass{
		height: 100%;
		width: 100%;
		box-shadow: 0;
		align-items: center;
	}
	.about-title, .about-subtitle{
		font-size: 15px;
	}	
	.card{
		display: flex;
		justify-content: center;
		align-items: center;
	}
}










