body {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(179, 207, 171);
  font-family: "Single Day", cursive;
  text-align: center;
}

/* Titles */
.subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1rem;
}

.title {
  font-family: Barriecito, cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  color: rgb(0, 59, 153);
  margin: 0.5rem 0 2rem 0;
}

/* Main green container */
.main-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 12px solid rgb(185, 174, 60);
  background-color: rgb(111, 155, 95);
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

/* Card styles */
.card {
  background-color: rgb(254, 246, 205);
  border: 2px solid black;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.card img {
  max-width: 30%;        /* was 60% → smaller image */
  height: auto;
  margin-bottom: 0.25rem; /* tighter spacing below image */
}

.card p {
  font-size: clamp(2rem, 4vw, 3rem); 
  margin: 0;
}

/* Mobile responsive layout */
@media (max-width: 700px) {
  .main-container {
    grid-template-columns: 1fr;
  }
}
