*{
    margin: 0;
    padding: 0;
}

body{
    background-image: linear-gradient(45deg, green, yellow);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#board{
    background-color: rgb(202, 202, 243);
    width: 90vmin;
    height: 92vmin;
    border: 1px solid black;
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}

.head{
    background-color: red;

}

.snake{
    background-color: purple;
    border: 0.25vmin solid white;
    border-radius: 12px;
}

.food{
    /* background-color: yellow; */
    background: linear-gradient(yellow, green);
    border: 0.25vmin solid black;
    border-radius: 8px;
}

#scorebox{
    position: absolute;
    top: 20px;
    right: 200px;
    font-size: 20px;
    font-weight: 700;
}