/* Page reset and font */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #d9f1ff, #ffeacc);
  color: #333;
}

/* Page title */
h1 {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Individual activity cards */
.activity {
  background-color: #ffffffcc;
  width: 80%;
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.activity:hover {
  transform: scale(1.02);
}

h2 {
  color: #0077b6;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 14px;
  color: #555;
}