* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    font-family: 'Helvetica Neue', sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans';
    color: #4f4f4f;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-board {   
    display: grid;
    justify-content: center;
    align-content: center;
    grid-template-columns: repeat(3, auto);
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #4f4f4f;
    border: 3px solid white;
    background-position: center;
    background-size: contain;
}

.x {
    background-image: url("./imgs/cross-svgrepo-com.svg");
}

.o {
    background-image: url("./imgs/circle-svgrepo-com.svg");
}

/* .cell:not(.x):not(.o):hover{
    background-color: lightgray;
} */

.msg-screen-container {
    position:fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.msg-screen-container h2 {
    color: white;
    font-size: 3em;
    text-align: center;
}

.msg-screen-container button {
    font-size: 1.5em;
    padding: 10px 15px;
    margin-top: 35px;
    background-color: white;
    line-height: 1.5em;
    font-weight: bold;
}

.msg-screen-container button:hover {
    background-color: rgb(194, 255, 181);
}

.msg-screen-container > div {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hidden {
    display: none;
}

/* Sorry, I just could not keep it simple here  (the selector),
but it's working great. */
.xturn .cell:not(.x):not(.o):hover{
    background-image: url("./imgs/cross-svgrepo-com.svg");
    background-color: #bcbcbc;
}

.oturn .cell:not(.x):not(.o):hover{
    background-image: url("./imgs/circle-svgrepo-com.svg");
    background-color: #bcbcbc;
}

.blocked .cell:not(.x):not(.o) {
    pointer-events: none;
    background-image: none;
}

.turn-text {
    font-size: 2em;
    margin-bottom: 40px;
    line-height: 2.6em;
    font-weight: bold;
}
.turn-text span {
    font-size: 1.25em;
}