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

#game-board {
    background-color: #3b0355;
    width: 100vmin;
    height: 100vmin;
    display: grid;
    grid-template-rows: repeat(21, 1fr);
    grid-template-columns: repeat(21, 1fr);
}

.snake {
    background-color: rgb(0, 255, 76);
    border: .40vmin solid black;
    
        width: 50px;
        height: 50px;
        border-radius: 100px / 50px;

}

.food {
    background-color: red;
    border: .25vmin solid black;
}
