
#container{
    height: 100vh;
    width: 80vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-color: #ADB9E3;
}

/*vertical menus-----------------------*/
#vertical{
    height: 45%;
    width: 100%;
    display: flex;
}

#vertical1, #vertical2{
    width: 50%;
    height: 100%;
}

#vertical1{
    background-color: #702632;
}

#vertical1 ul, #vertical2 ul{
    list-style: none;
    height: 90%;
    width: 80%;
    margin: auto;
}

#vertical1 ul li a, #vertical2 ul li a{
    text-decoration: none;
}

/*---vertical1---*/
#vertical1{
    background-color: #702632;
}

#vertical1 ul li{
    height: 20%;
    width: 80%;
    align-self: center;
    background-color: #40434E; 
}

#vertical1 ul{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#vertical1 ul li a{
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
}

#vertical1 ul li a span{
    margin: auto;
    color: black;
}

#vertical1 ul li a:hover{
    background-color: #912F40;
}

/*---vertical2---*/
#vertical2{
    background-color: #087E8B;
}

#vertical2 ul li{
    height: 10%;
    width: 60%;
    align-self: center;
}

#vertical2 ul{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#vertical2 ul li a{
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
}

#vertical2 ul li a span{
    margin: auto;
    color: black;
}

#vertical2 ul li a:hover{
    border: 1px solid black;
    border-radius: 10px;
    background-color: #ff5A5F;
}

/*horizontal menus---------------------------*/
#horizontal{
    height: 10%;
    width: 100%;
    display: flex;
}

#horizontal1, #horizontal2{
    width: 50%;
    height: 100%;
}

#horizontal1 ul, #horizontal2 ul{
    list-style: none;
    height: 90%;
    width: 80%;
    margin: auto;
}

#horizontal1 ul li a, #horizontal2 ul li a{
    text-decoration: none;
}

/*---horizontal1---*/
#horizontal1{
    background-color: #629677;
}

#horizontal1 ul{
    display: flex;
    justify-content: space-evenly;
    background-color: #FAC8CD;
}

#horizontal1 ul li{
    width: 15%;
    height: 50%;
    align-self: center;
}

#horizontal1 ul li a{
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
}

#horizontal1 ul li a span{
    margin: auto;
    color: black;
}

#horizontal1 ul li a:hover{
    background-color: #D7BCC8;
}

/*---horizontal2---*/
#horizontal2{
    background-color: #218380;
}

#horizontal2 ul{
    display: flex;
    justify-content: space-evenly;
    background-color: #D81159;
}

#horizontal2 ul li{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

#horizontal2 ul li a{
    display: block;
    height: 55%;
    width: 50%;
    display: flex;
    background-repeat: no-repeat; background-size: cover;
    align-self: center;
}

#horizontal2 ul li span{
    align-self: center;
    background-color: #73D2DE;
    border-radius: 3px;
}

#horizontal2 ul li:nth-child(1) a{
    background-image: url(../images/eatery_about.png);
}

#horizontal2 ul li:nth-child(2) a{
    background-image: url(../images/eatery_location.png);
}

#horizontal2 ul li:nth-child(3) a{
    background-image: url(../images/eatery_menu.png);
}

#horizontal2 ul li:nth-child(4) a{
    background-image: url(../images/email.png);
}

#horizontal2 ul li:nth-child(5) a{
    background-image: url(../images/home.png);
}

#horizontal2 ul li a:hover{
    opacity: .5;
}

/*grid---------------------------------------------------------*/
.grid{
    display: grid;
    grid-template-columns: 150px 150px 150px;
    grid-template-rows: 150px 150px;
    grid-gap: .5rem;
    align-self: center;
    background-color: #ADB9E3;
    margin-top: 48px;
}

.item{
    border: 1px solid black;
}

.item a{
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    background-size: cover; background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
}

.item1 a{
    background-image: url(../images/steam_profile.jpg);
}

.item2 a{
    background-image: url(../images/steam_profile2.jpg);
}

.item3 a{
    background-image: url(../images/carshow.jpg);
}

.item4 a{
    background-image: url(../images/virgil.jpg);
}

.item5 a{
    background-image: url(../images/japan1.jpg);
}

.item6 a{
    background-image: url(../images/boardgame.jpg);
}

.item a span{
    align-self: center;
    background-color: rgba(110, 103, 103, 0.9);
    color: black;
}

.item a:hover{
    opacity: .5;
}

}


