*{
    margin: 0;
    padding: 0;
}
.body{
    background: url(../image/bg.jpg);
    min-height: 100vh;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;

}

#scorebox{
    position: absolute;
    top: 9px;
    right: 200px;
    font-size: 39px;
    font-weight: bold;
}

#hiscorebox{
    position: absolute;
    top: 59px;
    right: 140px;
    font-size: 39px;
    font-weight: bold;
}

#bord{
    background: linear-gradient(rgb(148, 197, 148), rgb(206, 206, 122) );
    width: 90vmin;
    height: 92vmin;
    border: 2px solid black;
    position: absolute;
    left: 2%;
    display: grid;
    grid-template-columns:repeat(18, 1fr);
    grid-template-rows: repeat(18, 1fr);
}

.head{
    background-color: red;
    border: 2px solid purple;
    border-radius: 2vmin;
    transform: scale(1.02);
}
.snake{
    background-color: purple;
    border: 2px solid white;
    border-radius: 2vmin;
}
.food{
    background-color: yellow;
    border: 2px solid black;
    border-radius: 8px;
}