*{
    margin: 0;
    padding: 0;
}

.body{
    background: url("bg.jpg") no-repeat;
    min-height: 100vh;
    /*   IN BACKGROUND SIZE FIRST WRITE WIDTH THEN HEIGHT */
    background-size: 100vw 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

#board{
    /* IT MIXES TWO COLORS */
    background: linear-gradient(rgb(162, 255, 162),rgb(248, 248, 166));
    /*  VMIN MEANS VH OR VW WHICH HAS MINIMUM HEIGHT WILL COME AS A VALUE */
    width: 90vmin;
    height: 92vmin;
    border: 2px solid black;


    display: grid;
    grid-template-columns: repeat(18,1fr);
    grid-template-rows: repeat(18,1fr);

}

#scoreBox{
    position: absolute;
    top: 9px;
    right: 200px;
    font-size: 39px;
    font-weight: bold;
}

#hiScoreBox{
    position: absolute;
    top: 59px;
    right: 170px;
    font-size: 39px;
    font-weight: bold;
}

.head{
    background:linear-gradient(red , yellow);
    border: 2px solid purple;
    transform: scale(1.02);
    border-radius: 9px;

}

.snake{
    background-color: purple;
    border: .25vmin solid white;
    border-radius: 12px;
}

.food{
    background: linear-gradient(red , purple);
    border: .25vmin solid black;
    border-radius: 8px;
    
}