/* * {
    transition: all 1s ease-out;
} */

header {
    display: flex;
    align-items: center;
    justify-content: center;

    /* width: 20vw; */
    width:90vw;
    height: 4rem;
    border-radius: 1rem;
    border-color: gray;
    border-width: .125rem;
    border-style: solid;
    margin: auto;
    /* padding-left: 35vw;
    padding-right: 35vw; */
}

a {
    text-decoration: none;
    color: black;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    
}
/* #gameboard {
    display: flex;
    align-items: center;
    justify-self: center;
} */
.row {
    display: flex;
    flex-direction: row;
}
.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    padding: 1rem;
    margin: .5rem;
    background-color: black;
    color: white;
    font-size: 3rem;
}