body {
  margin: 0;
  padding: 0;
  background: linear-gradient(
      rgba(0, 0, 255, 0.3), 
      rgba(0, 0, 255, 0.3)
    ), url('/gifs/intropic.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-family: "MS Gothic", sans-serif;
  text-align: center;
  cursor: url("/cursors/pinklotus.gif"), auto;
  min-height: 100vh;
}

.intro {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  max-width: 90%;
  height: 340px;
  padding: 20px;
  background-color: rgba(129, 169, 234, 0.4);
  border: 6px dashed #bcbdfb;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  animation: stabilize 2s ease-out forwards;
}

.button {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.apsara {
  position: fixed;
  margin-left: -280px;
  margin-bottom: -120px;
  z-index: 40;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

#outline {
text-shadow: 1px 0px #000, -1px 0px #000, 0px 1px #000, 0px -1px #000, 0 0;
color:#fff;
font-size: 18px;
}

.floating-key {
  transition: transform 0.3s ease;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-key {
  animation: float 3s ease-in-out infinite;
}

.floating-key:hover {
  transform: scale(1.1); 
  filter: drop-shadow(0 0 10px #ff69b4);
}

@keyframes stabilize {
  0% { filter: blur(15px); opacity: 0; transform: translate(-50%, -45%) scale(1.2); }
  100% { filter: blur(0px); opacity: 1; transform: translate(-50%, -50%) scale(1); }
}