*{
    padding: 0;
    margin : 0;
}

.body{
    background: url(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(230, 195, 195),rgb(205, 223, 128));
    width: 97vmin;
    height: 95vmin;
    border: 2px solid black;
    display: grid;
    grid-template-rows: repeat(22,1fr);
    grid-template-columns: repeat(22,1fr);
}
#scoreBox{
    position: absolute;
    top: 9px;
    right: 200px;
    font-size: 40px;
    font-weight: bold;
}

.head{
    background-color: rgb(42, 50, 165);
    border: 2px solid black;
    border-radius: 10px;
}
.snakebody{
    background-color: rgb(104, 104, 223);
    border: 2px solid green;
    border-radius: 15px;
}

.food{
    background-color: red;
    border: 2px solid yellow;
    border-radius: 14px;
}