/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
    .banner {
        height: 853px;
    }

    .banner-content h1{
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }
    .button{
    font-size: 13px;
    }
}

@media screen and (min-width: 992px) {
    .banner {
        height: 450px;
    }

    .banner-content h1{
        font-size: 30px;
    }

    h3 {
        font-size: 28px;
    }

    .button{
        font-size: 16px;
    }
}
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex; /* Use flexbox for layout */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.left-side, .right-side {
    width: 50%; /* Each side takes half the width */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.left-side {
    background-color: lightblue;
}
.right-side {
    background-color: #020b20;
    color: white; /* Text color for dark background */
}

.right-side h1,.right-side h3{
    color: white;
}

.banner-content {
    /* Removed absolute positioning, now handled by flexbox */
}
/* .banner-content h1 {
    font-size: 30px;
} */

.banner-content h4 {
    font-size: 18px;
    margin-top: 10px;
}

.button{
    background-color: #007bff;
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    opacity: 0;

}
.chrome-btn {
    display: inline-flex;
    align-items: center;
    /*    background-color: #4285F4;*/
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    margin-top: 30px;
}

.chrome-btn:hover {
    background-color: #357AE8;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.browser-download-button{
    display: inline-flex;
}


ul{list-style-type:none;}
.app-icons {
    display: list-item;
    align-items: center;
}
.vertical {
    width: 300px;
    flex-direction: column;
}

.android {
    width: 150px;
    margin-top: 10px;
}

.apple{
    margin-top: 10px;
}