body {
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

#ride {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #444 url(bg-ride.gif) center center no-repeat;
  background-size: cover;
  color: white;
}

#ride div {
  position: absolute;
  top: 3rem;
  left: 3rem;
  column-count: 3;
  column-gap: 1rem;
  color: rgba(0, 0, 0, 0);
  z-index: 1;
  text-shadow: 0 0 1px rgb(0, 0, 0);
  font-family: "Apercu Mono Regular", "Andale Mono", monospace;
}
@media (min-width: 640px) {
  #ride div {
    top: 12rem;
    left: 12rem;
  }
}

#ride blockquote {
  position: relative;
  margin: 0;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff2800;
  z-index: 2;
  font-family: "Apercu Mono Regular", "Andale Mono", monospace;
  line-height: 1.3;
}
@media (min-width: 640px) {
  #ride blockquote {
    padding: 2rem;
    font-size: 2rem;
  }
}
@media (min-width: 920px) {
  #ride blockquote {
    padding: 4rem;
    font-size: 3rem;
  }
}

#ride cite {
  margin-top: 1rem;
  font-size: 0.75em;
  font-style: normal;
  display: block;
  color: rgba(255, 255, 255, 0.75);
}