@font-face {
    font-family: 'Handwriting';
    src: url('assets/css/font/Handwriting.ttf') format('truetype');
}
@font-face {
    font-family: 'Galeforce BTN';
    src: url('assets/css/font/Galeforce BTN.ttf') format('truetype');
}
* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.progress-bar {
    width: 80%;
    max-width: 400px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #ffbf00;
    animation: fill 4s infinite;
}

@keyframes fill {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    box-shadow: var(--scroll-shadow);
}

::-webkit-scrollbar-thumb {
    background: #ffbf00;
    border-radius: 20px;
}
body {
    background: #000;
    color: aliceblue;
    overflow-y: scroll;
    overflow-x: hidden;
}
ul{
    display: flex;
    list-style: none;
}
header{
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    height: 60px;
    width: 100%;
    padding-bottom: 10px;
    background: #060505;
}
header .menu{
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 5px; 
    width: 100%;
    z-index: inherit; 
}
header .menu ul{
    display: flex;
    flex-direction: row;
    list-style: none;
}
header .menu ul li{
    margin-right: 30px;
    margin-left: 30px;
}
header .menu ul li a{
    text-decoration: none;
    color: aliceblue;
    font-size: 15px;
}
header .menu .icons{
    font-size: 30px;
}
header .menu .icons:hover{
    transform: scale(1.3);
}

nav {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #000;
    width: 100%;
    margin-bottom: 30px;
}

nav .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 5px;
}

nav .logo .head {
    height: 100px;
    width: 100px;
    margin-right: 30px;
}
nav .logo .head:hover{
    animation: logo-rotate 5s infinite linear;
}
@keyframes logo-rotate {
    
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg); 
    }
}

nav .logo .letter {
    height: 100px;
    padding-top: 20px;
}
nav .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;  
}
nav .menu ul{
    display: flex;
    flex-direction: row;
    list-style: none;
}
nav .menu ul li{
    margin-right: 30px;
    margin-left: 30px;
}
nav .menu ul li:hover{
    transform: scale(1.15);
}
nav .menu ul li a{
    text-decoration: none;
    color: aliceblue;
    font-size: 20px;
}
nav .menu ul li.active a{
    text-decoration: solid;
    color: #ffbf00;
    font-weight: 700; 
}
.main-container{
    display: flex;
    justify-content: center;
    width: 100%;
}
.main-container .content{
    width: 100%;
}
.main-container h1{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 70px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: 'Handwriting', cursive;
}
.main-container h2{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    padding-bottom: 50px;
    font-family: 'Galeforce BTN', cursive;
}
iframe{
    margin: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.bg-img{
    position: absolute;
    top: 0;
    z-index: -5;
    width: 100%;
    overflow: hidden;
    /* background: #ffbf00; */
}
.bg-img img{
    width: 100%;
    height: 1000px;
    margin-top: 200px;
    object-fit: cover;
    opacity: 0.05;
    z-index: -5;
}
.youtube{
    display: flex;
    justify-items: center;
    text-align: center;
}

/* ------------------------------------------------------------------------------------- */
.bio{
    display: flex;

}
.bio .text{
    width: 50%;
    margin: 30px;
    padding-bottom: 190px;
}
.bio .pic{
    display: flex;
    justify-content: center;
    margin: 30px;
    width: 50%;
    padding-top: 70px;
}
.bio .pic img{
    height: 700px;
    opacity: 0.9;
    transition: all 0.5s;
}
.bio .pic img:hover{
    height: 700px;
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.5s;
}

/* ---------------------------------------------------------------------------------------------------- */


.song{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.cd{
    animation: logo-rotate 5s infinite linear;
}
@keyframes logo-rotate {
    
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg); 
    }
}
/* ---------------------------------------------------------------------------------------------------- */

.contact{
    display: flex;
    width: 100%;
    padding-top: 100px;
}
.contact ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.contact ul li a{
    color: aliceblue;
    font-size: 110px;
    margin: 50px;
    transition: all 1s ease-in-out;
}
.contact ul li .icons:hover{
    transform: 
    rotate3d(0,1,0,360deg)
    scale(1.3);
    transition: all 1s ease-in-out;
}
#insta:hover{
    color:  #ff00ee;
}
#fb:hover{
    color: blue;
}
#tik:hover{
    color: aliceblue;
}
#snap:hover{
    color: yellow;
}
#whatsapp:hover{
    color: rgb(37, 255, 4);
}
#twitter:hover{
    color: aliceblue;
}
#tube:hover{
    color: red;
}
#call:hover{
    color: rgb(145, 255, 0);
}
#mail:hover{
    color: aliceblue;
}
#gmail:hover{
    color: rgb(253, 65, 65);
}