main {
    width: 75%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    h1 {
        font-size: 50px;
        margin-left: 50px;
    }
    #buttons {
        position: relative;
        display: flex;
        flex-direction: row;
        margin-left: 40px;
        margin-top: 20px;
        border-radius: 20px;
        background-color: #4C3B36;
        width: fit-content;
        gap: 20px;
        div {
            position: absolute;
            z-index: 0;
            background-color: #111111;
            height: 100%;
            border-radius: 20px;
            transition: 0.3s;
        }
        .interior {
            width: 130px;
            margin-left: 0;
        }
        .guests {
            width: 105px;
            margin-left: 140px;
        }
        .dishes {
            width: 101px;
            margin-left: 255px;
        }
        h3 {
            text-align: center;
            width: fit-content;
            z-index: 1;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 20px;
        }
    }
    #gallery-div {
        position: relative;
        margin-top: 60px;
        width: 90vw;
        overflow-x: hidden;
        .gallery {
            width: 75vw;
            position: absolute;
            top: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            transition: 0.3s;
            img {
                cursor: pointer;
                width: 30%;
                border-radius: 20px;
            }
        }
        .first { position: relative; }
    }
    #view {
        position: fixed;
        left: 0; right: 0; top: 0; bottom: 0;
        opacity: 0;
        z-index: 10;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transition: 0.3s;
        display: none;
        img {
            width: calc(300px + 15vw);
            border-radius: 20px;
        }
        .arrow {
            position: absolute;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 10px;
            div {
                rotate: 45deg;
                height: 3px;
                width: 20px;
                border-radius: 20px;
                background-color: #FFFFFF;
            }
            div:first-child {
                rotate: -45deg;
            }
            padding: 18px 16px;
            border: solid 1px #BF9045;
            border-radius: 100%;
        }
        .left  { left: 20px; }
        .right { right: 20px; rotate: 180deg; }
        .cancel {
            position: absolute;
            right: 60px;
            top: 60px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: -25px;
            div {
                rotate: 45deg;
                height: 3px;
                width: 25px;
                border-radius: 20px;
                background-color: #FFFFFF;
            }
            div:first-child {
                rotate: -45deg;
                margin-bottom: -3px;
            }
            padding: 22px 12px;
            border: solid 1px #BF9045;
            border-radius: 100%;
        }
        #dark {
            position: absolute;
            z-index: -1;
            left: 0; right: 0; top: 0; bottom: 0;
            background-color: rgba(17,17,17,0.9);
        }
    }
    #load {
        padding: 8px 16px;
        border-radius: 20px;
        border: 2px solid #BF9045;
        margin-bottom: 40px;
        margin-top: 60px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        cursor: pointer;
    }
    #load:hover {
        background-color: #BF9045;
    }
}




@media only screen and (max-width: 1355px) {
}



@media only screen and (max-width: 1200px) {
    main { width: 80%; }
}



@media only screen and (max-width: 1050px) {
    main {
        width: 90%;
        h1 { margin-left: 10px; }
        #buttons {
            margin-left: 10px;
            gap: 10px;
            .interior { width: 120px; margin-left: 0px; }
            .guests   { width: 80px; margin-left: 130px; }
            .dishes   { width: 90px; margin-left: 225px; }
            h3 { font-size: 17px; }
        }
    }
}


@media only screen and (max-width: 800px) {
    main {
        width: 90%;
        h1 { font-size: 35px; margin-left: 0; }
        #buttons { margin-left: 0; }
        #gallery-div .gallery {
            width: 90vw;
            img { width: 45%; }
        }
        #view .arrow { display: none; }
    }
}
