:root {
    --text-color: #fff;                      /* White for text */

    --theme-color: #1E3E62;
    --darker-theme-color: #10243f;
    --background: #0B192C;
    --accent-color: #FF6500;
}

.image {
    width: 100vw;
    height: 100vh;
    
 overflow: hidden;
 position: fixed;
 z-index: -1;
    overflow: hidden;
}

#background-img {
 height: 140dvh;
}

#section1 p {
    text-align: center;
}

#section2 {
    padding-bottom: 60px;
    padding-top: 20px;
    background-color: rgba(16, 36, 63, 0.8) !important;
}

#section2  > p {
    width: 90%;
    text-align: center;
}

#section3{
    display: flex;
    align-items: center; 
    flex-direction: row;
    background-color: rgba(16, 36, 63, 0.8);
    min-height:40dvh !important;
    /*opacity: 0.7;*/

}


#section3 h1, p {
    text-align: left;
}

#section3 img {
    max-width: 30vw;
    object-fit: contain;
}

#horizontal-buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}


@media screen and (max-width: 1080px){
    #section3 {
        flex-direction: column;
    }

    #section3 img {
        max-width: 100%;
        object-fit: cover;
    }
}


@media screen and (max-width: 420px){
    #horizontal-buttons{
        flex-direction: column;
        gap: 20px;
    }
    .small-box {
        font-size: 12px;
    }
    h2 {
        font-size: 35px;
    }
    p {
        font-size: 15px;
    }

}
