*{
    padding: 0;
    margin: 0;
}
.container{    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background: url("../bg.jpg");
}
#scoreBox{
    position: absolute;
    top: 9px;
    right: 200px;
    font-size: 40px;
    font-weight: bold;
    color: blueviolet;
}
#hiscoreBox{
    position: absolute;
    top: 49px;
    right: 160px;
    font-size: 40px;
    font-weight: bold;
    color: blue;
}
#board{
    background-color:gold;
    width: 90vmin;
    height: 92vmin ;
    border: 2px solid blue;
    border-radius: 5px;
    display: grid;
    grid-template-rows: repeat(18, 1fr);
    grid-template-columns: repeat(18, 1fr);
    
}
.head{
   background-color: red;
   border: 2px solid blue;
   border-radius: 5px;
   transform: scale(1.05);
   
}
.snake{
    background-color: purple;
    border: 2px solid green;
    border-radius: 5px;
}
.food{
    background-color:darkcyan;
    border: 2px solid purple;
    border-radius: 5px;
}