.rotate-2deg {
  rotate: 2deg;
}

.rotate-neg2deg {
  rotate: -2deg;
}

.pop-up {
  position: absolute;
  z-index: 2;
  background-color: var(--red);
  padding: 1rem;
  font-size: var(--fs-sm);
  line-height: 100%;
  border-radius: 0.5rem;
  max-width: 20rem;
  min-width: 20rem;
  filter: drop-shadow(0px 0px 5px rgba(225, 240, 247, 0.2));
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.5s ease-out;
  animation: rotate 1s infinite ease-out;
}

.pop-up.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.link {
  cursor: pointer;
  touch-action: manipulation;
}

.popup-music {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: unset;
}

html {
  height: 100%;
}

@keyframes rotate {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  95% { transform: rotate(-1.2deg); }
}
