body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Segoe UI, serif;
    font-size: 14px;
    background-color: black;
}

.grid-container {
    display: grid;
    /*grid-template-rows: 1fr 2fr 1fr;*/
    grid-template-rows: auto auto 1fr;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
    height: 100vh;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
}

.top-logo {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

#logo {
    width: auto;
    height: auto;
    max-width: 369px;
    max-height: 155px;
    margin-top: 20px;
}

.shadow-box {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    background-color: rgba(128, 128, 128, 0.9); /* gray with opacity */
    /*padding: 20px;*/
    margin: 60px 0px 20px 0px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*gap: 20px; !* space between the text and button *!*/
}

.shadow-box p {
    text-align: center;
}

.text-box {
    margin: 30px 60px 40px 60px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

button {
    background: #000000 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    opacity: 1;
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: x-large;
    font-weight: bold;
    padding: 15px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    /* Additional button hover effect */
    &:hover {
        color: black;
        background-color: rgb(252, 251, 251);
    }
}

.button-center {
    display: flex; /* or display:grid */
    justify-content: center;
}

.bottom-logos {
    grid-row: 3 / 4;
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.bottom-logos img {
    width: auto;
    height: 40px; /* adjust this for your logo sizes */
}

@media only screen and (max-width: 798px) {
    #logo {
        width: 55%;
    }
    .bottom-logos img {
        width: auto;
        height: 30px; /* adjust this for your logo sizes */
    }
}

@media only screen and (max-width: 638px) {
    #logo {
        width: 37%;
    }
}