@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
}
body{
    background-color: #3B3039;
}

nav {
    background-color: #F7C3C7;
    color: white;
    height: 50px;
    font-size: 27px;
    display: flex;
    align-items: center;
    padding: 0px 12px;
    font-family: 'Poppins', sans-serif;
}

nav ul {
    list-style-type: none;
}

.gameContainer {
    display: flex;
    justify-content: center;
    margin-top: 50px;

}

.container {
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: 'Roboto', sans-serif;
    color: white;
    text-shadow: 2px 0px 6px #F7C3C7;
}

.box {
    border: 2px solid #F7C3C7;
    font-size: 6.5vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover {
    background-color: rgba(227, 211, 211, 0.573);
}

.gameInfo {
    padding: 34px;
    font-family: 'Open Sans', sans-serif;
}

.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;
}
h1{
    padding: 30px 10px;
    color: #F7C3C7;
    font-size: 3vw;
    text-decoration: underline;
    font-family: 'Open Sans', sans-serif;
}
button{
    margin-left: 50px;
    width: 40%;
    height: 55px;
    border-radius: 40px;
    color: #3B3039;
    font-size: 1.5vw;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer; 
}
button:hover{
    color: #F7C3C7;
}
.stats{
    display: flex;
}
.info{
    font-size: 3vw;
    padding-left: 10px;
    color: white;
    text-shadow: 2px 0px 6px#F7C3C7;
   
}
@media screen and (max-width: 800px) {
    .gameContainer {
        flex-wrap: wrap;
    } 
    .gameInfo{
        margin-top: 30px;
    }
    .container{
        grid-template-columns: repeat(3, 20vh);
        grid-template-rows: repeat(3, 20vh);
    }
}
