body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  font-family: 'Arial', sans-serif;
  position: relative;
}

.emoji-container {
  display: flex;
  justify-content: space-around;
  width: 50%;
  position: absolute;
  bottom: calc(55% - 25px);
}

.emoji {
  font-size: 5rem;
  animation: spin 8s cubic-bezier(0.4, 0.2, 0, 0.9) infinite;
}

.emoji:nth-child(2) {
  animation-delay: 1s;
}

.emoji:nth-child(3) {
  animation-delay: 2s
}
.emoji:nth-child(4) {
  animation-delay: 3s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(128, 128, 128, 0.5);
  padding: 5px 15px;
  font-size: 1rem;
}
.emoji:nth-child(4) {
  animation-delay: 3s;
}

.staff-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: calc(50% - 50px);
}

.staff {
  width: 90%;
  height: 1px;
  background-color: black;
  margin: 5px 0;
}

.notes-container {
  display: flex;
  justify-content: space-around;
  width: 50%;
  position: absolute;
  bottom: calc(50% - 0px);
}



@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(128, 128, 128, 0.5);
  padding: 5px 15px;
  font-size: 1rem;
}

.note {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  animation: moveNote 5s linear infinite, fadeIn 1s linear forwards;
}

@keyframes moveNote {
  from {
    right: -5%;
  }
  to {
    right: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
