*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    background-image: linear-gradient(to right bottom, #e0e0e0, #d6dadf, #c7d6db, #b9d3d0, #b6cdbd);    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#board{
    border-radius: 10px;
    background-image: url("/images/grass2.png");
    background-size:cover;
    background-position: center;
    width: 90vmin;
    height: 92vmin;
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
}


.head{
    background-color: rgb(197, 80, 80);
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    border: 1px solid black;
}

.snake-body{
    background-color: rgb(155, 90, 90);
    background-position: center;
    background-size: contain;
    border-radius: 3px;
    border: 1px solid black;
    margin-left: 2px;
    margin-top: 2px;
    margin-right: 2px;
}

.food{
    background-image: url("/images/foodimage.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 2px;
    border: 1px solid black;
}

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