@charset "utf-8";

@import url("css2");

body { font-family: Inter, sans-serif; }

@keyframes spin-slow { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-spin-slow { animation: 8s linear 0s infinite normal none running spin-slow; }

.animate-fade-in-up { animation: 1s ease-out 0s 1 normal forwards running fadeInUp; }

@keyframes fadeInUp { 
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0px); }
}

@keyframes equalizer { 
  0% { height: 3px; }
  50% { height: 15px; }
  100% { height: 3px; }
}

.equalizer-bar { width: 3px; background-color: rgb(220, 38, 38); animation: 1s ease-in-out 0s infinite normal none running equalizer; }

.eq-1 { animation-delay: 0.1s; }

.eq-2 { animation-delay: 0.3s; }

.eq-3 { animation-delay: 0.5s; }

::selection { background-color: rgb(220, 38, 38); color: black; }

#lightbox { backdrop-filter: blur(10px); }