

nav{
    background-color: black;
    color: white;
    height: auto;
    font-size: medium;
    display: flex;
    align-items: center;
    padding: 0px 20px 0px;
    font-family: 'Roboto', sans-serif;
}

nav ul {
    list-style-type: none;
}

.gameContainer{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}    

.container{
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: 'Roboto', sans-serif;
}

.box{
    border: 2px solid black;
    font-size: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover{
    background-color: lightblue;
}

.gameInfo{
    padding: 0 34px;
}

.imgbox img{
    width: 0;
    transition: width 1s ease-in-out;
}

.br-0{
    border-right: 0;
}

.bl-0{
    border-left: 0;
}

.bt-0{
    border-top: 0;
}

.bb-0{
    border-bottom: 0;
}

button {
    margin-left: 20px;
    background-color: antiquewhite;
    padding: 5px 10px 5px 10px;
}