@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-left: 120px;
    margin-right: 80px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px;
    box-sizing: border-box;
}

.czasteczka {
    position: fixed;
    top: -80px;
    font-size: 35px;
    color: #00b7b2;
    animation: spadanie 8s linear infinite;
    z-index: -1;
}


.czasteczka:nth-child(1) { left: 10%; animation-delay: 0s; }
  .czasteczka:nth-child(2) { left: 30%; animation-delay: 6s; }
  .czasteczka:nth-child(3) { left: 50%; animation-delay: 3s; }
  .czasteczka:nth-child(4) { left: 70%; animation-delay: 5s; }
  .czasteczka:nth-child(5) { left: 90%; animation-delay: 7s; }
  @keyframes spadanie {
    from {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
  }