/* 100devs tic-tac-toe CSS */
/* https://github.com/Dev-Corinne/TicTacToe */
.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.game-board {
    display: grid;
    grid-template-rows: 200px 200px 200px;
    grid-template-columns: 200px 200px 200px;
}

body {
    display: flex;
    justify-content: center;
}

.box {
    background: rgb(129, 129, 240);
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAA;
    font-size: 150px;
}

#restart {
    margin: 30px 30px 30px 45px;
    border: none;
    font-weight: bold;
    border-radius: 20px;
    width: 120px;
    height: 50px;
    font-size: 15px;
    color: yellow;
    background-color: crimson;
}

.hidden {
    display: none;
}

#forms {
    display: flex;
    align-self: center;
    align-items: center;
    flex-shrink: 0;
    margin: auto;
    grid-template-columns: subgrid;
}
#scoreBoard {
    margin-left: 0.3em;
    margin-right: 0.5em;
    flex-shrink: inherit;
    text-align: center;
    font-size: 3em;
}
