*{
    margin: 0;
    padding: 0;
}
nav{
    background-color: rgb(58, 71, 71);
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
}
nav ul li{
    font-size: 1.5rem;
    margin: 30px;
    list-style-type: none;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.gamecontainer{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.container{
    display: grid;
    grid-template-columns: repeat(3, 10vw);
    grid-template-rows: repeat(3, 10vw);
}
.box{
    border: 2px solid black;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.box:hover{
    background-color: rgb(225, 219, 230);
}
.gameinfo{
    margin-left: 20px;
    padding-left: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.image 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;
}
#resat{
    margin: 20px;
    padding: 10px;
    background-color: black;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}
#resat:hover{
    background-color: aliceblue;
    color: black;
}
.info{
    font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
    .gamecontainer{
        flex-wrap: wrap;
    }
}
body{
    background-color: rgb(89, 190, 89);
}