*{
    margin: 0;
    padding: 0;
    
}

body{

    background-color: #9C89B8;
    text-align: center;
}

.container {

    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.game{

    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:1.5vmin;

}
.box{

    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    font-size: 5vmin;
}
.reset{
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 2vmin;
    border-radius: 0.5rem;
    background-color: #F7B7A3;
    color: #fff;
    border: none;
    cursor: pointer;
}