body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836') no-repeat center center/cover;
  color: #333;
}

.ota {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.h1 {
  text-align: center;
  color: #b71c1c;
  margin-bottom: 40px;
}

.dish {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: 0.7s ease;
}

.dish:hover {
  transform: scale(1.02);
  box-shadow: 1px 1px 10px 5px red;
}

.dish img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.birbala {
  padding: 20px;
}

.birbala h2 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #388e3c;
  margin-top: 10px;
}

@media screen and (max-width:400px) {
  grid-template-columns: 1fr 1fr
  grid-template-rows: 100px 100px 1fr
  grid-template-areas: 
    "bola1 bola1"
    "bola3 bola4"
    "bola3 bola5";
}
