@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color:#104b99;
    --secondary-color:#ffbd59;
    --tertiary-color:#14B0CCFF;
    --light-color:#f4f4f4;
    --dark-color:#061b37;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: var(--light-color);
    margin: 0;
    font-family: "Barlow Condensed", sans-serif ;
}
body::-webkit-scrollbar {
    overflow-x: hidden;
}


body::-webkit-scrollbar {
    display: block;
    background: var(--light-color);
    width: 0.8rem;
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    padding: 10px;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover{
    background: var(--dark-color);
}

#preloader {
    position: fixed;
    z-index: 2000;
    background: var(--light-color) url("https://res.cloudinary.com/djrigb7ok/image/upload/v1757039856/kokoko_u6fzyl.gif") no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    #logo {
        z-index: 2010;
        width: 100vw;
        height: 100vh;
        position: fixed;
        background: rgba(244, 244, 244, 0.5) url("https://res.cloudinary.com/djrigb7ok/image/upload/v1756969022/dipi_v2_m5vfqt.gif") no-repeat center center;
        background-size: 10%;
    }
}



/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
    section {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    * {
        overflow-x: hidden;
    }
    #preloader {
        #logo {
            background-size: 50%;
        }
    }

}