@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'poppins';
}
body{
    text-align: center;
    background-color: rgb(38, 38, 84)
}
.container{
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    font-size: 8vmin;
    background-color: rgb(255, 255, 0);
    color: red;
    
}
#reset-btn{
    width: 100px;
    padding: 1rem;
    font-size: 1.25rem;
    font-family: 'poppins';
}

#new-btn{
    width: 200px;
    padding: 1rem;
    font-size: 1.25rem;

}

#msg{
    font-size: 5vh;
}

.hide{
    display: none;
}
.box{
    border-radius: 5px ;
    border-color: rgb(255, 251, 0);
}
#name{
    color: rgb(255, 188, 247);
}

#msg{
    color: white;
}