p {
    color: red;
}

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

}

#gameboard {
    display: grid;
    grid-template-rows: repeat(21, 1fr);
    grid-template-columns: repeat(21, 1fr);
    justify-content: center;
    background: url('./images/grass.jpeg');
    width: 80vmin;
    height: 80vmin;
}

.snake {
    background-color: greenyellow;
    border-radius: 15px;
    border: .25vmin solid black;
}

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