:root {
  color-scheme: dark;
  font-family: system-ui, sans-serif;
  background: #0f0503;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #0f0503;
}

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
}

.poster {
  position: relative;
  width: min(100vw, calc(100svh * 9 / 16));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0f0503;
}

.poster-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music {
  position: absolute;
  z-index: 2;
  left: 7.5%;
  right: 7.5%;
  bottom: 13%;
  filter: drop-shadow(0 6px 20px rgb(0 0 0 / 45%));
}

.music iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
}

@media (max-width: 600px), (max-height: 620px) {
  .music {
    bottom: 10%;
  }

  .music iframe {
    height: 152px;
    transform: scale(0.75);
    transform-origin: top center;
  }
}
