body {
    font-family: 'Times New Roman', Times, serif;
}

section {
    text-align: center;
}

.game_title {
    font-size: 60px;
    color: #690e85;
    margin: 10px auto;
}

.game_container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: 10px auto;
    background-color: #08d1c7;
    color: #030f75;
}

.cell {
    font-family: "Permanent Marker", cursive;
    width: 100px;
    height: 100px;
    box-shadow: 1px 1px 2px 2px #0bc4d1;
    border: 1px solid #020142;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.game_status {
    font-size: 50px;
    color: #43d72f;
    margin: 20px auto;
}

.game_restart {
    background-color: #a9aaa3;
    width: 160px;
    height: 45px;
    font-size: 15px;
    color: #00040a;
    cursor: pointer;
    margin: 2px auto;
    border: 4px solid #02187a;
    font-family: Comic Sans MS;
}

.game_restart:hover{
    background-color: rgb(8, 223, 123);
}
