*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
.container{
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.game-board{
    
    height:90vmin;
    width: 90vmin;
   background-color: rgb(241, 161, 201);
   display: grid;
   grid-template-columns: repeat(16, 1fr);
   grid-template-rows: repeat(16, 1fr);


}
.score{
    color: aliceblue;
}
.snake{
   background-color: #555e27;
   border: 2px solid black ;
   display: flex;
   align-items: center;
   justify-content: center;
   color: aliceblue;
}
.head{
    background: url(https://play-lh.googleusercontent.com/TUtOJfxHm78ggM9Ssl2iAO2sDXeJ5rYauo_TTc9SiUsscHppl_TydsCwDoyZhfDv5qM);
    background-size: 100% 100%;
    display: flex;
   align-items: center;
   justify-content: center;
}
.food{
    background: url(https://www.shutterstock.com/image-photo/red-apple-isolated-on-white-600w-1727544364.jpg);
    background-size: 100% 100%;
}
