*{
    padding: 0;
    margin: 0;
}

.body{
    position: relative;
    background: url(../img/background.jpg);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#board{
    background: linear-gradient(rgb(172, 250, 172), rgb(231, 231, 170));
    width: 90vmin;
    height: 92vmin;
    border: 2px solid rgb(0, 0, 0);
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}

.head{
    background-color: red;
}

.head::after{
    content: "O  O";
    font-size: 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.snake{
    background-color: red;
}

.food{
    background: yellow;
}

#scoreBox{
    position: absolute;
    right: 200px;
    top: 200px;
    font-size: 50px;
    color: white;
}

#hiscoreBox{
    position: absolute;
    right: 200px;
    top: 280px;
    font-size: 50px;
    color: white;
}