.body{
    display:grid;
    justify-content: center;
    align-content: center;
    width: 100vw;
    height: 100vh;
}

.entireGrid {
    display:grid;
    background-color: white;
    justify-self: center;
    align-self: center;
    width: 65vw;
    height: 75vh;
}
.gridSq {
    display:grid;
    grid-auto-columns: 1fr;
    border: rgba(0,0,0,.4);
    border-style: solid;
    border-width: 1px;
}