@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?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');
*{
    margin: 0;
    padding: 0;
}
.main_banner{
    max-height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
#logo-item{
    width: 200px;
    margin-left: 2.5em;
    margin-bottom: 20px;
}
#head-message{
    font-family: "Work Sans", sans-serif;
    font-size: 128px;
    color: #0454EE;
    text-transform: uppercase;
    letter-spacing: -5px;
    line-height: 100px;
    font-weight: 800;
}
.banner-content{
    margin-left: 2em;
}
#banner-text{
    font-family: "Poppins", sans-serif;
    color: #000;
    margin-top: 2em;
    font-size: 18.1px;
    width: 750px;
    text-align: justify;
}
#bg{
    position: absolute;
    height: 100vh;
    right: 0;
    filter: drop-shadow(0 1.2rem 2.25rem #0454EE);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255); /* semi-transparent white background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
}

#preloader img {
    width: 100px; 
    height: auto;
    animation: zoominout 0.5s infinite;
}
@keyframes zoominout {
    0%{
        width: 100px;
    }
    50%{
        width: 150px;
    }
    100%{
        width: 100px;
    }
}
@media only screen and (max-width: 900px) {
    #bg{
        display: none;
    }
    .main_banner{
        align-items: center;
        margin: 0;
    }
    .banner-content{
        margin: 0;
    }
    #head-message{
        font-size: 64px;
        line-height: normal;
        text-align: center;
    }
    #logo-item{
        margin: 0;
    }
    #banner-text{
        text-align: center;
        margin: 10px;
        width: 90%;
    }
}