
*{
    font-family: 'Baloo 2', cursive;
}

.balsamic{
    font-family: 'Balsamiq Sans', cursive;
    font-weight: bolder;
}

:root{
    --dark-green: #94C11D;
    --green: rgba(145, 175, 53, 0.432);
}

#main-container{
    background-image: url("img/bck.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 0;
}

#menus-container{
    background-color: var(--green);
    max-width: 75%;
}

.menu-header{
    background-color: var(--dark-green);
    color: white;
    font-style: italic;
}

.menu-box{
    height: 70vh; 
    width: 32%;
    transition: 0.5s ease-out;
}

.menu-content{
    overflow-x: scroll;
}


/*
.menu-box:hover{
    width: 3000px;
    transition: 1.5s;
}*/

.big-menu{
    width: 3000px;
    transition: 0.5s ease-in;
}

.big-item{
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transition: .7s ease-in;
}

.item{
    max-width: 450px;
    width: 100%;
    margin: auto;
    transition: .7s ease-out;
}



.menu-content::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE and Edge */
.menu-content {
    -ms-overflow-style: none;
}

.link{
    background-color: rgba(68, 67, 67, 0.384);
    text-align: center;
    height: 34%; 
    width: 80px; 
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

#logo{
    margin: 0 2.5%;
    width: 40%;
}

#left-arrow{
    position: absolute;
    right: 2.5%;
    top: 50%;
    font-size: 3em;
}

#bot-arrow{
    position: absolute;
    right: 45%;
    bottom: 10px;
    font-size: 3em;
}

.arrow{
    display: none;
    height: 40px;
    color: rgba(128, 128, 128, 0.589);
}

nav{
    margin: 0 auto 50px auto;
}

@media only screen and (max-width: 770px) {
    nav{
        margin: 0 auto 20px auto;
    }

    #logo{
        margin: 0 ;
        width: 100%;
    }

    #nav-links{
        margin-top: 10px;
    }

    #menus-container{
        max-width: 75vw;
        overflow-x: scroll;
    }

    .menu-box{
        flex-basis: 75vw;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .arrow{
        display: block;
    }

    .link{
        margin: 5px 0;
        height: 40%;
    }
  }