body {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
}

#tape-reel {
  width: min(449px, 100%);
  aspect-ratio: 449 / 283;
  position: relative;
  margin: 0 auto;
}
#tape {
  position: relative;
  margin: 0;
}

#tape-reel .frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  opacity: 0;
  pointer-events: none;
}

#tape-reel .frame.active {
  opacity: 1;
}

#info{
  margin: 0.5em 0;
}
#tape figcaption {
  position: absolute;
  z-index: 20;

  left: 80px; /* will be overridden by JS if you want */
  top: 21%;
  transform: translateY(-50%);

  font-family: "Parisienne", cursive;
  text-align: left;
  margin: 0;

  line-height: 1; /* responsive + stabilizes height */
  white-space: nowrap;
}

.playMe {
  margin: 0.5em 0;
  cursor: pointer;
  display: table;
}

.playMe:hover {
color: blue
}
#showControl {
  margin: 0.5em 0;
  cursor: pointer;
  color: blue;
}

.show {
  display: block;
}
.hide {
  display: none;
}

.blink {
  -webkit-animation: 1s linear infinite condemned_blink_effect; /* for Safari 4.0 - 8.0 */
  animation: 1s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes condemned_blink_effect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

figure{
  margin:0;
}

.bottom{
  float:none;
  clear: both;
  padding-top: .05em;
}
/* Use a media query to add a breakpoint at 800px: */
@media screen and (min-width: 801px) {
  .left, .right {
    width: 50%;
    float: left;
  }
   .right {
    width: 45%;
    float: left;
    margin-left: 1em;
  }
}