body{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: black;
}

#game-board{
    background-color: #CCC;
    width: 100vmin;
    height: 100vmin;

    display: grid;
    grid-template-rows: repeat(50, 1fr);
    grid-template-columns: repeat(50, 1fr);

}

.snake{
 background-color: hsl(200, 100%, 50%);
 border: .25vmin solid black;
}

.food{
    background-color: hsl(50, 100%, 50%);
    border: .25vmin solid black;
}