:root {
  --link-color: #000;
  --link-color-hover: #333
}

@media (prefers-color-scheme: dark) {
  :root {
    --link-color: #fff;
    --link-color-hover: #ddd
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a.cta {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  background-color: var(--link-color);
  padding: 1rem 2rem;
  transition: all 150ms ease-in-out;
}

a.cta:hover {
  background-color: var(--link-color-hover);
}

@media (prefers-color-scheme: dark) {
  a.cta {
    color: #000;
  }
}

a.anchor {
  position: relative;
  top: -4rem;
}

.separator {
  height: 0.5rem;
  background: #000;
  margin: 2rem auto;
  width: 100%;
  max-width: 240px;
}

@media (prefers-color-scheme: dark) {
  .separator {
    background: #fff;
  }
}

.center {
  text-align: center;
}

.strike-through {
  text-decoration: line-through;
}

.container {
  max-width: calc(800px + 2rem);
  margin: 0 auto;
  padding-bottom: 6rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.content {
  padding: 1rem 0;
}

#intro {
  font-size: 1.65rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 580px) {
  #intro {
    font-size: 1.85rem;
  }
}

@media screen and (min-width: 1200px) {
  #intro {
    font-size: 2rem;
  }
}

#newsSection h2 {
  margin-top: 0;
}

#newsSection .date {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.8em;
}

.timetable__item {
  margin-bottom: 0.85em;
}

.timetable__times p {
  margin: 0;
}

.timetable__times strong {
  /*display: inline-block;*/
  /*width: 3em;*/
}

.timetable__desc {
  font-size: 0.85em;
}