@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
    font-family:"Poppins", san-serif;
    background-color:#8c52ff;
}

section{
    text-align: center;
    border-radius: 10px;
    width: 400px;
    margin:auto;
    background-color:#fff;
    margin-top: 75px;
    box-shadow: 0px 10px 36px 16px rgba(0, 0, 0, 0.1)
}

.gameTitle {
    padding-top: 20px;
}

.gameContainer {
    display:grid;
    grid-template-columns: repeat(3, auto);
    width: 150px;
    margin: 120px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.cell{
    font-family: "Poppins", sans-serif;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 0 1px #333333;
    border: 1px solid #333333;
    cursor: pointer;
    line-height: 50px;
    font-size: 20px;
}

button {
    margin-bottom: 20px;
    height: 30px;
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #8c52ff;
    cursor:pointer;
}

button:hover{
    transition: 0.25s;
    background-color: #c1a2fe;
}


