body {
  margin: 0;
  font-family: Georgia, serif;
  color: #e6ffe9;
  background-image: url(IMG_0126.png);
  background-size: 25%;
}

.garden-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  width: 80%;
  max-width: 700px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(81, 192, 119, 0.5);
  background: rgba(10,30,15,0.8);
  box-shadow: 0 0 25px rgba(2, 24, 11, 0.4);
}

a{
  background-color: #0c431b;
  padding: 10px;
  color: whitesmoke;
}



.hidden {
  display: none;
}

/* PLANTS */
.plants {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.plant {
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  background: #123d22;
  color: #e6ffe9;
  border: 2px solid #78ffb0;
}

.plant:hover {
  box-shadow: 0 0 12px rgba(120,255,170,0.8);
}

/* MAZE */
.directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.directions button {
  padding: 15px;
  font-size: 18px;
  background: #1c1d2f;
  color: #d9d9ff;
  border: 2px solid #9f9fff;
  cursor: pointer;
}

.directions button:hover {
  box-shadow: 0 0 10px rgba(160,160,255,0.9);
}

#exitBtn {
  margin-top: 25px;
  padding: 15px 25px;
  font-size: 18px;
  background: #9f9fff;
  border: none;
  cursor: pointer;
}
