.section{
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.section_snake{
  width: 100%;
  position: relative;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_title{
  width: 100%;
  text-align: center;
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: var(--accent);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.section_snake-game{
  position: relative;
  width: 90%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px double rgba(0,0,0, 0.2);
  /* border: 1px solid var(--dark-primary); */
  border-radius: 5px;
  /* padding: 5px 10px; */
  margin-bottom: 20px;
}
.section_title{
  position: absolute;
  width: 50%;
  margin: auto;
  top: -40px;
}
.fruit{
  position: absolute;
  width: 25px;
  height: 25px;
  display: none;
}
.fruit_img{
  width: 100%;
  height: 100%;
}
.snake{
  position: absolute;
  width: 20px;
  height: 20px;
  /* background-color: red; */
  /* border-radius: 8px; */
  /* border: 1px double rgba(0,0,0, 0.8); */
}
.snake_square{
  width: 100%;
}
.snake_head{
  width: 25px;
  height: 25px;
  /* background-color: rgb(200, 0, 0); */
  /* padding: 5px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.snake_head-mouth,.snake_head-up{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.snake_head-up{
  flex-direction: row;
}
.snake_head-eye{
   width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 50%;
  border: 1px solid white;
}
.snake_head-mouth{
  height: 100%;
  border:1px solid white;
  border-radius: 50%;
  margin: 1px;
  padding: 0;
  background-color: black;
}
.snake_head-mouthdown{
  width: 100%;

}

@media (max-width: 900px) {
  /* body{
    height: max-content !important;
  } */
.section {
  width: 100%;
}
}

@media (max-width: 550px) {

.section {
  width: 100%;
}
.hands{
  width: 150%;
}
}