body {
  font-family: Arial, sans-serif;
  
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  text-align: center;
  margin: 0;
  padding: 0;
}

.game-container {
  margin: 10px auto;
  max-width: 600px;
  padding: 40px;
  background: #2A7B9B;
  background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(95, 224, 63, 1) 100%);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

h1 {
  color: #1f4735;

}

#question {
  font-size: 1.2em;
  margin: 20px 0;
}

#options button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #b7e4c7;
  cursor: pointer;
  transition: 0.3s;
}

#options button:hover {
  background: #95d5b2;
}

#options button.correct {
  background: #108d55;
  color: white;
}

#options button.wrong {
  background: #e81e2f;
  color: white;
}

#nextBtn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 8px;
  background: #296248;
  color: white;
  border: none;
  cursor: pointer;
}

#plant {
  margin-top: 20px;
  width: 200px;
  transition: transform 0.5s ease-in-out;
  box-shadow:7px 7px 10px black;
  
  
}


.cover-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
  color: white;
  text-align: center;
}

.cover-page h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cover-page button {
  padding: 12px 25px;
  font-size: 1.2em;
  border: none;
  border-radius: 10px;
  background: #e55410;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.cover-page button:hover {
  background: #76d0a8;
}
#heading{
  color: #d5ee12;
}


#result {
  font-weight: bold;
  margin-top: 20px;
  font-size: 2.2em;
  color: #021d11;
} 
