.menus {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menus h3 {
    width: max-content;
    text-align: center;
    margin-right: 30px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.menus h3:hover {
    color: var(--sage);
    transition: 0.3s all ease-in-out;
}

.menus h3:last-of-type {
    margin-right: 0;
}

.menus h3.active {
    background-color: var(--black);
    color: var(--white);
}

.menu_board_container {
    background-color: var(--black);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
}

.menu_board_container h4,
.menu_board_container h5,
.menu_board_container p {
    color: var(--white);
}

.menu_board_wrapper {
    display: none;
}

.menu_board_wrapper.show_menu {
    display: block;
}

.opening {
    position: relative;
    z-index: 5;
    padding: 150px 0 140px;
}

.opening h1 {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 100px;
    width: 600px;
}

.opening p {
    width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.opening .buttons_container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px auto 0;
}

.opening .buttons_container .button {
    margin-right: 0;
}

.opening .buttons_container .button_2 {
    margin-left: 25px;
}

@media (max-width: 660px) {
    .opening h1,
    .opening p {
        width: 100%;
    }

    .opening h1 {
        font-size: 80px;
    }

    .opening {
        padding: 100px 0 90px;
    }
    
    .opening .buttons_container {
        flex-direction: column;
    }

    .opening .buttons_container .button,
    .opening .buttons_container .button_2 {
        margin: 0 auto 25px;
    }

    .opening .buttons_container .button_2:last-of-type {
        margin-right: auto;
        margin-bottom: 0;
    }

    .opening .buttons_container .button,
    .opening .buttons_container .button_2 {
        width: 100%;
    }
}