@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
    font-family:"poppins", sans-serif;
    background-color: #8c52ff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    width:400px;
    height:auto;
    background-color: #fff;
    margin-top: 75px;
    box-shadow: 0px 10px 36px 16px rgba(0,0,0,0.1);
}
.game--title{
    padding-top: 20px;
}
.game--container{
    display: grid;
    grid-template-columns: repeat(3,auto);
    width:150px;
    height: 150px;
    margin-bottom: 10px;
}
.cell{
    font-family: "Poppins",sans-serif;
    width:50px;
    height: 50px;
    box-shadow: 0 0 0 2px #404040;
    border: 1px solid #404040;
    cursor: pointer;
    line-height: 50px;
    font-size: 20px;
}
button{
    margin-bottom:20px;
    height:30px;
    border: none;
    border-radius: 6px;
    color: #fff;
    background-color: #8c52ff;
    cursor: pointer;
}
button:hover{
        transition: 0.25s;
        background-color: #c1a2fe;
}