body {
    padding: 0;
    margin: 0;
    background: whitesmoke;
}

.title {
    font-size: 40px;
    color: rgba(0, 0, 255, 0.519);
}

section {
    text-align: center;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 302px;
    margin: 25px auto;
}

.gValue {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 0 1px rgba(0, 0, 255, 0.519);
    border: 1px solid #333333;
    cursor: pointer;
    line-height: 100px;
    font-size: 35px;
}

.gameStatus {
    text-align: center;
    font-size: 25px;
    color: rgba(0, 0, 255, 0.519);
}

#btnRestart {
    padding: 10px 30px;
    text-align: center;
    font-size: 20px;
    text-decoration: solid;
    border-color: rgba(0, 0, 255, 0.519);
    border-radius: 8px;
    cursor: pointer;
}

.footer {
    color: rgb(131, 123, 123);
}