a {
  color: #000000;
  text-decoration: none;
}

#ticker-container {
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center;     /* Horizontally center */
    width: 100%;

    overflow: hidden;
}

/* Mobile: stack menu elements */
@media (max-width: 768px) {
    #ticker-container {
      overflow: hidden;
    }

    #speedControlContainer {
      display: flex;
      flex-direction: row;
    }

    #logo img {
        /* min-width: 20px; */
        /* max-width: 100px; */
    }

    #menu {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      width: 100%;
      
      flex-direction: column;
    }

    .ticker span {
      font-size: 1.25em; /* 2em → 1.25em, see style.php, must match intro size */
    }
}

.ticker-wrapper {
  width: 100%;
  background: white;
  white-space: nowrap;
  box-sizing: border-box;
}

.ticker span {
  display: inline-block;
  /* padding-right: 50px; horizontal space between headlines */
  padding-top: 5px;
  padding-bottom: 5px;

  font-size: 2em;
}

@media (max-width: 768px) {
    .ticker span {
      font-size: 1.25em; /* 2em → 1.25em, see style.php, must match intro size */
    }
}