* {
    margin: 0;
    padding: 0;

}

.body {
    background: url("../img/bg.jpg");
    min-height: 100vh;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#board {
    background: linear-gradient(rgb(167, 202, 167), rgb(226, 226, 43));
    width: 90vmin;
    height: 92vmin;
    border: 6px double rgb(255, 8, 8);
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}

.head {
    background: linear-gradient(red, yellow);
    border: 2px solid purple;
    transform: scale(1.02);
    border-radius: 9px;

}

.food {
    background: linear-gradient(rgb(225, 255, 1), rgb(254, 246, 2));
    border: .25vmax solid blueviolet;
    border-radius: 50%;
}

.snake {
    background-color: purple;
    border: .25vmin solid rgb(255, 255, 255);
    border-radius: 20%;
}

#scoreBox {
    color: blue;
    position: absolute;
    top: 5vh;
    right: 10vw;
    font-size: 50px;
    font-weight: bold;
    font-family: "Nerko One", cursive;
    font-weight: 400;
    font-style: normal;
}

#highScoreBox {
    color: rgb(43, 226, 80);
    position: absolute;
    top: 5vh;
    left: 5vw;
    font-size: 50px;
    font-family: "Nerko One", cursive;
    font-weight: 400;
    font-style: normal;
}
img {
    position:absolute;
    bottom: 5vh;
    left: 5vw;
    right: 82vw;
    height: 35vw;
    width: 15vw;
}
