/* Apply sans-serif font to the whole site */
body {
  font-family: sans-serif;
}

/* Center the main heading */
body p {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Set container and team rows */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* Increased gap between items */
  padding: 1rem;
}

.celebration {
  background-color: #f0f0f0;
  padding: 1rem;
  text-align: left; /* Left-align contents within each block */
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Center align h3 inside each .celebration block */
.celebration h3 {
  text-align: center;
  margin: 0 0 0.5rem 0;
  font-size: 1.2em;
  font-weight: bold;
}

.team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem; /* Add vertical spacing between rows */
}

.team-row p {
  margin: 0;
  font-size: 1em;
}

/* Style and space buttons */
button {
  padding: 0.4rem 0.7rem; /* Increase padding for easier clicking */
  font-size: 0.9em;
  cursor: pointer;
}
