/* CSS styles */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: #004789; /* Placeholder color, change as needed */
}


.board {
  color: white;
  padding: 20px;
  max-width: 1200px; /* Adjust as needed for your layout */
  margin: auto; /* Center the board in the page */
}

.section-header {
  font-size: 2.0em;
  padding: 10px;
  margin-bottom: 10px;
  color: #004789;
  font-weight: 600;
  border-radius: 25px;
}

.header-first {
  background-color: #e62c99; /* Updated color */
}

.header-second {
  background-color: #eac842;
  margin-top: 50px; /* Updated color */
}

.attraction {
  border-bottom: 1px solid white; /* White dividing line */
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
}

.attraction:last-child {
  border-bottom: none; /* No border for the last item */
}

.attraction-name {
  font-size: 1.2em;
}

.attraction-wait {
  font-size: 1.5em;
  padding: 5px 15px;
}
