body, html {
    width: 100%;
    height: 100%;
}

main {
    display: block;
    z-index: 20;
    position: relative;
}

@media (min-width: 992px) {
    .bg {
        height: 100vh;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-color: #FFE9C5;
        overflow: hidden;
    }

    .menu-item {
        /* Center vertically and horizontally */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-item>div {
        height: 50vh;
        width: 50%;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .menu-item-slim {
        /* Center vertically and horizontally */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-item-slim>div {
        height: 30vh;
        width: 50%;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (max-width: 992px) {
    .bg {
        height: 50vh;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-color: #FFE9C5;
        overflow: hidden;
    }

    .menu-item {
        /* Center vertically and horizontally */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-item>div {
        height: 38vh;
        width: 90%;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .menu-item-slim {
        /* Center vertically and horizontally */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-item-slim>div {
        height: 20vh;
        width: 90%;

        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}
