.song-page {

  .video-container {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .video-container h1 {
    font-size: 1.3em;
    text-align: center;
    margin: 1em 0 0.5em 0;
  }

  .video-container iframe {
    width: 100vw;
    height: 60vw;
    max-height: 80vh;
    min-height: 220px;
    border-radius: 0;
    background: #000;
    display: block;
  }



  @media (max-width: 600px) {
    .video-container h1 {
      font-size: 1em;
    }

    .video-container iframe {
      height: 56vw;
      min-height: 180px;
    }
  }

  @media (orientation: portrait) {
    .video-container iframe {
      height: 56vw;
      min-height: 180px;
    }
  }
}

#youtube-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#youtube-popup.active {
  display: flex;
}

.card-title {
  a {
    color: #521475;
  }

}