body {
  z-index: -2;
  background: #ffcc93;
}

#background-ingredients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.falling {
  position: absolute;
  top: -150px;
  width: 40px;
  opacity: 0.3;
  filter: brightness(0) invert(1);
  animation: fall linear;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(130vh) rotate(360deg);
  }
}
