@import url('https://fonts.googleapis.com/css?family=Poppins: 200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: content-box;
}

body{
    background: linear-gradient(-45deg, #7CFC00, #00FF00, #EE7752, #E73C7E, #23A6D5, #23D5AB, #FFFF00);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}
 
@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}
 
@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.overlay{
    background: rgba(0, 0, 0, .7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 0.5s ease-in;
    transition-delay: 0.5s;
    z-index: 1;
}

.profile-card{
    width: 18em;
    background: #fff;
    box-shadow: 0 0 5em rgba(0, 0, 0, .4);
    padding: 2em;
    position: relative;
    padding-top: 16em;
    overflow: hidden;
    border-radius: 20px;
}

.menu-btn{
    background: none;
    border: none;
    font-size: 1.3em;
    cursor: pointer;
    position: absolute;
    top: 1em;
    left: 1em;
    z-index: 2;
    color: #000;
}

.profile-card img{
    width: 17em;
    border-radius: 50%;
    border-top-left-radius: 40%;
    position: absolute;
    top: -3em;
    right: -3em;
    z-index: 0;
}

.profile-card h1{
    margin-top: 10px;
    margin-bottom: 0.8em;
}

.profile-card p{
    margin: 0.2em 0;
    color: #b8b8b8;
}

.profile-card .social{
    margin-top: 3em;
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1em;
}

.profile-card .social a{
    font-size: 1.2em;
    color: #000;
    transition: all .3s ease;
}
.profile-card .social .twit:hover{
    color: #2a9d8f;
    transition: .5s;
}
.profile-card .social .ig:hover{
    color: #d84299;
    transition: .5s;
}
.profile-card .social .yt:hover{
    color: #ee2e31;
    transition: .5s;
}

.more{
    padding:  0 1.5em 0 1.5em;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    z-index: 1;
    counter-reset: #fff;
    transition: 0.5s ease-in;
    transition-delay: all .3s ease;
    color: #ffffff;
}

.more h2{
    margin: 1em 0;
}

.more .about{
    margin-top: 30%;
}

.more .bait{
    margin: 0;
}
.more p{
    margin: 1.5em 0;
    color: #d6d6d6;
    line-height: 25px;
}

.more ul{
    padding: 0.5em 2em;
}

.more li{
    margin: 0.5em 0;
    font-size: 1.2em;
}

/* Custom Scrollbar */
/* width */
.profile-card ::-webkit-scrollbar{
    width: 8px;
}

/* Track */
.profile-card ::-webkit-scrollbar-track{
    background: #1e1e1e;
}

/* Handle */
.profile-card ::-webkit-scrollbar-thumb{
    background: #ffffff;
}

/* Handle on Hover */
.profile-card ::-webkit-scrollbar-thumb:hover{
    background: #bcbcbc;
}

/* Dynamic classes for Javascript */
.profile-card .img-expand{
    width: 32em;
    border-radius: 0;
    transition: all .3s ease;
}

.menu-btn-opened{
    color: #fff;
    background: #000;
    padding: 0.5em;
    border-radius: 10px;
    transition: all .3s ease;
}
.menu-btn-opened:hover{
    color: #000000;
    background: #ffffff;
    transition: .5s;
}

.overlay-opened{
    height: 100%;
    transition: all .3s ease;
}

.more-opened{
    padding: 4em 1em 1em 1em;
    height: 100%;
    overflow-y: scroll;
    transition: all .3s ease;
}

/* FOOTER SECTION */
/* footer{
    width: 100%;
    color: #d6d6d6;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 1;
    background-color: #1e1e1e;
    line-height: 50px;
    height: 50px;
}

footer i{
    color: #ff2929;
} */
