* {
    position: relative;
}

h1 {
    font-size: 64px;
}

/* .container {
    flex-wrap: wrap;
} */

.hero {
    padding: 40px;
    height: 60vh;

    align-items: flex-end;
    justify-content: flex-start;

    /* make text white */
    color: white;
}

.hero h1 {
    width: 20%;
}

.formrobin-embed {
    position: relative;
    display: block;
    width: 80%;
    font-family: var(--body-font);
}

.made-with-formrobin {
    display: none;
}

.main-booking-container h4, .main-booking-container p {
    text-align: center;
    width: 100%;
}

.divider {
    background: var(--accent-overlay);
    color: white;
    height: 32%;
    flex-wrap: wrap;
    align-content: center;
    padding: 40px;
}

.divider p {
    width: 100%;
    text-align: center;
}

.btn-container {
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    align-self: center;
    margin: auto;
}

@media (max-width: 1200px) {
    .hero {
        align-items: flex-start;
        justify-content: flex-end;
    }


    .container {
        flex-direction: column;
    }

}

@media (max-width: 700px) {
    h1 {
        font-size: 48px;
    }

    .hero {
        padding: 20px;
        background-position: 60%;
    }

    .btn-container {
        width: 100%;
        justify-items: space-between;
        flex-wrap: wrap;
    }

    .btn-container a {
        display: block;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}