body {
  margin: 0;
  overflow: hidden;
  background-color: #282c34;
  color: white;
  font-family: Arial, sans-serif;
}
iframe {
  z-index: 0;
}
#emoji-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.emoji {
  position: absolute;
  font-size: 2rem;
  user-select: none;
  pointer-events: none;
  animation: fall 7s linear infinite; /* Add spin animation */
}

@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh); /* Fall to the bottom of the viewport */
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); /* Complete a full rotation */
  }
}
