body{
    background-color: rgb(178, 178, 255);
}
.cell{
    background-color: rgb(212, 241, 255);
    width: 75px;
    height: 75px;
    border: 2px solid;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-size: 50px;
    border-radius: 5px;
    cursor: pointer;
}
#gameContainer{
    margin-top: 15vh;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
}
button{
    padding: 10px;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: rgb(65, 65, 255);
    color: white;
    width: 100px;
}
button:hover{
    background-color: rgb(0, 0, 77);
    color: rgb(255, 255, 255);
}