body{
    background-image: url(img/bg_1.gif);
    color:white;
    text-align:center;
    font-family:Arial;
}

h1{
    text-align: center;
    background-color: rgb(67, 122, 59);
    margin: 20px 250px 20px 250px;
    height: 70px;
    padding-top: 30px;
    border-radius: 30px;
}

#estrutura{
   margin: 20px 55px 20px 55px;
}

#jogo{
    border: solid, #1cda26;
    background-color: rgb(65, 63, 63);
    width:400px;
    height:400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(20,20px);
}

.imgLeft{
    position: absolute;
    left: 10px;
    width: calc(30%);
    z-index: -5;
}

.imgRight{
    position: absolute;
    right: 10px;
    width: calc(30%);
    z-index: -5;
}

.cell{
    width: 20px;
    height: 20px;
}

.cobra{
    background:lime;
}

.comida{
    background: red;
}

.image{
    object-fit: fixed;
    margin-top: 20px ;
    height: 50px;
}

