.square {
    /* background-color: red; */
    /* padding: 6%; */
    font-size: 3em;
    /* aspect-ratio: 1/1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 2vw; */
    /* width: 2vw; */

    border: black solid 3px;
}

#board {
    display: grid;
    height: 60%;
    /* width: 60%; */
    aspect-ratio: 1;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    /* margin: 0 auto; */
}

#main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#score {
    /* position: absolute; */
    /* top: 20; */
    /* font-size: 2em; */
}

#alert-box {
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60%;
    height: 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* background-color: black; */
    /* color: white; */
}

#game-alert {
    /* width: 100%; */
    /* height: 100%; */
    background-color: black;
    padding: 0 100px;
    color: white;
}

#nav {
    width: 100%;
    /* height: 100%; */
    position: absolute;
}

@media only screen and (max-width: 600px) {
    #board {
        width: 60%;
        height: initial;
    }
}