/* Umumiy sozlamalar */
body {
  background: url('https://cdn.wallpapersafari.com/28/48/pRYN4t.jpg');
  background-size: 100% 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kirish oynasi */
.hero {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

/* Tugmalar */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  grid-area: ota1;
}

.btn {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn.taom {
  background: linear-gradient(90deg, #d84315, #ff7043);
  grid-area: bola1;
}

.btn.gul {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  grid-area: bola2;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

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