html {
  font-size: 10px;
}

body {
  font-family: sans-serif;
  background: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  text-align: center;
  gap: 5rem;
  padding: 5rem 2rem;
}

h1 {
  font-weight: bold;
  font-size: 4rem;
}

h2 {
  font-weight: bold;
  font-size: 2.5rem;
}

#timezone {
  font-weight: bold;
}

.events {
  gap: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.event {
  background: #222;
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 40rem;
  width: 100%;
  box-sizing: border-box;
}

.timeslots {
  margin: 2rem -2rem -2rem;
  display: flex;
  flex-direction: column;
}

.timeslot {
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeslot:nth-child(odd) {
  background: #333;
}

.timeslot .label {
  font-weight: bold;
  color: #ddd;
  opacity: 0.8;
}
