html, body {
    margin: 0;
    height: 100%;
    background: black;
    overflow: hidden;
  }
  
  canvas {
    display: block;
    width: 100%;
    height: 100%;
  }


  #emoji-container {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
}

.emoji {
  position: absolute;
  font-size: 28px;
  animation: fall 1.5s ease-in forwards, fade 1.5s ease-in forwards;
  pointer-events: none;
  user-select: none;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

@keyframes fade {
  to {
    opacity: 0;
  }
}

#quadev-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Pacifico', cursive;
  font-size: 18px;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 5;
  transition: background 0.3s;
}

#quadev-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
