@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600&display=swap');

* {
    padding: 0;
    margin: 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 {
    width: 90vmin;
    height: 92vmin;
    background: linear-gradient(rgb(71, 226, 179), rgb(255, 240, 175));
    border: 2px solid black;
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}

.head {
    background: linear-gradient(rgb(249, 156, 130),rgb(117, 2, 247));
    border: .25vmin solid white;
    border-radius: 9px;
    transform: scale(1.02);
}

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

}

.food {
    background: linear-gradient(red, purple);
    border: .25vmin solid black;
    border-radius: 8px;
}

#scoreBox{
    position: absolute;
    top: 20px;
    right: 200px;
    font-size: 37px;
    font-weight: bold;
    color: rgb(23, 94, 247);
    font-family: 'Baloo Bhaijaan 2', cursive;
    background: #d2f145 ;
    border-radius: 12px;
    border: none ;
}

#highScoreBox{
    position: absolute;
    top: 100px;
    right: 160px;
    font-size: 37px;
    font-weight: bold;
    color: rgb(243, 75, 9);
    font-family: 'Baloo Bhaijaan 2', cursive;
    background: #d2f145 ;
    border-radius: 12px;
    border: none ;
}