body {
  margin: 0;
  padding: 0;
  background-image: url(bg.jpeg);
  text-align: center;
}
.header {
  margin: 10px auto;
  display: block;
  height: 45vh;
  border-radius: 10px;
  box-shadow: 0 0 5px bisque;
}
p {
  color: white;
  font-weight: 800;
  font-size: 18pt;
}
.icon {
  height: 5vh;
  margin: 15px;
}
.large-icon {
  height: 15vh;
  margin: 15px;
}




#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 */
  }
}
