@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%;
    }
}

@media only screen and (max-width: 1024px){
    
}
@media only screen and (max-width: 820px){
    
    header .menu ul li{
        margin-right: 25px;
        margin-left: 25px;
    }
}
@media only screen and (max-width: 768px){
    
    header .menu ul li{
        margin-right: 20px;
        margin-left: 20px;
    }
}
@media only screen and (max-width: 600px){

    header .menu ul li{
        margin-right: 10px;
        margin-left: 10px;
    }
    header .menu .icons{
        font-size: 20px;
    }
    nav .logo {
        padding-top: 2px;
        padding-bottom: 1px;
    }
    nav .logo .head {
        height: 70px;
        width: 70px;
        margin-right: 10px;
    }
    nav .logo .letter {
        height: 80px;
        padding-top: 20px;
    }
    nav .menu ul li{
        margin-right: 10px;
        margin-left: 10px;
    }
    nav .menu ul li a{
        text-decoration: none;
        color: aliceblue;
        font-size: 15px;
    }
    nav .menu{
        padding-top: 10px;
        padding-bottom: 5px;  
    }
    .main-container h1{
        font-size: 30px;
        padding-bottom: 5px;
        padding-top: 5px;
    }
    .main-container h2{
        font-size: 20px;
        padding-bottom: 5px;
    }
    iframe{

       }
    .youtube{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}