body {
  background-attachment: fixed;
  background-image: var(--accent-gradient);
  color: white;
  font-family: var(--font-family), sans-serif;
  font-size: 2.5vh;
  margin: 5vh 5vw;
}
.cover {
  animation: cover 5s ease-out infinite both;
  background-attachment: fixed;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.title {
  animation: titleAppear 1s ease-out both;
  font-weight: bold;
}
.news-ticker {
  animation: item 5s ease-out infinite both;
  white-space: nowrap;
}
.programme-table {
  backdrop-filter: var(--liquid-glass);
  border-radius: 0.4em;
  box-shadow: var(--liquid-glass-shading);
  height: 100%;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
.programme-table:before {
  background-image: var(--accent-gradient);
  content: "";
  height: 100%;
  opacity: 0.5;
  position: absolute;
  width: 100%;
}
.programme-table tr {
  overflow: hidden;
  min-height: 30%;
}
@keyframes titleAppear {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
  }
}
@keyframes item {
  from {
    transform: translateY(100%);
  }
  25%, 75% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes cover {
  from {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}