/* Custom boxes */

/* Container */
.box-container {
  display: flex;
  justify-content: center;   /* centers the whole row */
  gap: 40px;                 /* space between boxes */
  margin-top: 40px;
  flex-wrap: wrap;           /* allows wrapping if needed */
}

/* Each box */
.box {
  width: 400px;              /* fixed width → ensures 2 per row */
  background-color: #aed71a;
  padding: 30px;
  border-radius: 20px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}


.box:hover {
  background-color: #c8f04a;
  transform: scale(1.05);
}

.box h2 {
  text-align: center;
}

.box p {
  text-align: center;
}


