@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
    padding: 0;
    margin: 0;
}

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

#scoreBox{
    position: absolute;
    top: 9px;
    right: 200px;
    font-size: 39px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

#board{
    background-color: rgb(171, 51, 251);
    width: 90vmin;
    height: 92vmin;
    border: 2px solid rgb(22, 21, 21);
    display: grid;
    grid-template-rows: repeat(20, 1fr);
    grid-template-columns: repeat(20,1fr);
}

.head{
    background-color: rgb(60, 165, 29);
    border: .25vmin solid white;
    border-radius: 9px;
}

.snake{
    background-color: rgb(0, 170, 255);
    border: .25vmin solid white;
    border-radius: 6px;
}

.food{
    background-color: rgb(192, 33, 33);
    border: .25vmin solid white;
    border-radius: 14px;
}