body {
    font-family: "Arial", sans-serif;
}

section {
    text-align: center;
}

.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;
}

.game--title {
    font-size: 100px;
    color: red;
    margin: 10px auto;
}

.game--container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: 10px auto;
    background-color: #102444;
    color: #ffffff;
}

.game--status {
    font-size: 50px;
    color: red;
    margin: 20px auto;
}

.game--restart {
    background-color: transparent;
    width: 200px;
    height: 50px;
    font-size: 25px;
    color: #d86c23;
    box-shadow: 2px 2px 2px 2px #d86c23;
    border: 2px solid #d86c23;
}

.game--restart:hover {
    background-color: #d86c23;
    color: #fff;
    transition: 0.5s;
}