.tv {
  position: relative;
  margin: 1rem 3rem;
  height: 836px;
  width: 846px;
  pointer-events: none;
  z-index: 10;
}

.tape {
  position: relative;
  animation: insertTape 3s forwards;
  transform-origin: top;
  bottom: 15rem;
  right: 8rem;
  width: 1200px;
  height: 190px;
  z-index: 10;
  cursor: pointer;
}

audio {
  display: none;
}

iframe {
  position: relative;
  bottom: 58rem;
  left: 8rem;
  border-radius: 10px;
  width: 690px;
  height: 450px;
}

@keyframes insertTape {
  0% {
    transform: scale(100%);
    z-index: 10;
  }

  80% {
    transform: scale(42%);
    z-index: 10;
  }

  100% {
    transform: scale(41%);
    z-index: 9;
  }
}
