body {
    font-family: "Arial", sans-serif;
}

section {
    text-align: center;
}

footer {
    margin-top: 60px;
    font-size: 25px;
    font-style: italic;
    text-decoration: underline;
}

.gameTitle {
    font-size: 100px;
    color: #51d72f;
    margin: 10px auto;
}

h2 {
    font-size: 50px;
    color: #d7a62f;
    margin: 10px auto;
}

.gameContainer {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: 10px auto;
    background-color: #11213a;
    color: #04c0b2;
}

.cell {
    font-family: "Permanent Marker", cursive;
    width: 100px;
    height: 100px;
    box-shadow: 2px 2px 2px 2px #ecd7ba;
    border: 2px solid #ecd7ba;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.gameStatus {
    font-size: 50px;
    color: #d7a62f;
    margin: 20px auto;
}

.gameRestart {
    background-color: #f7e4ac;
    width: 200px;
    height: 50px;
    font-size: 25px;
    color: #5586e2;
    box-shadow: 2px 2px 2px 2px #d86c23;
    border: 2px solid #d86c23;
}