.white {
    bottom: 0;
    left: 0;
    min-height: 100vh;
    opacity: 0.6;
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -10;
}

.squares {
    height: 100%;
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
}

.square {
    -webkit-animation: squares 9.5s linear infinite;
          animation: squares 9.5s linear infinite;
    align-self: flex-end;
    width: 1em;
    height: 1em;
    -webkit-transform: translateY(100%);
          transform: translateY(100%);
    background: #ebebeb;
}
.square:nth-child(2) {
    height: 1.5em;
    width: 3em;
    -webkit-animation-delay: 1s;
          animation-delay: 1s;
    -webkit-animation-duration: 17s;
          animation-duration: 17s;
    -webkit-filter: blur(5px);
}
.square:nth-child(3) {
    height: 2em;
    width: 1em;
    -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
    -webkit-animation-duration: 8s;
          animation-duration: 8s;
    -webkit-filter: blur();
}
.square:nth-child(4) {
    height: 1em;
    width: 1.5em;
    -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
    -webkit-filter: blur(3px);
    -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.square:nth-child(5) {
    height: 1.25em;
    width: 2em;
    -webkit-animation-delay: 4s;
          animation-delay: 4s;
    -webkit-filter: blur(2px);
    -webkit-animation-duration: 11s;
          animation-duration: 11s;
}
.square:nth-child(6) {
    height: 2.5em;
    width: 2em;
    -webkit-animation-delay: 2s;
          animation-delay: 2s;
    -webkit-filter: blur(1px);
    -webkit-animation-duration: 9s;
          animation-duration: 9s;
}
.square:nth-child(7) {
    height: 5em;
    width: 2em;
    -webkit-filter: blur(2.5px);
    -webkit-animation-duration: 12s;
          animation-duration: 12s;
}
.square:nth-child(8) {
    height: 1em;
    width: 3em;
    -webkit-animation-delay: 5s;
          animation-delay: 5s;
    -webkit-filter: blur(6px);
    -webkit-animation-duration: 18s;
          animation-duration: 18s;
}
.square:nth-child(9) {
    height: 1.5em;
    width: 2em;
    -webkit-filter: blur(0.5px);
    -webkit-animation-duration: 9s;
          animation-duration: 9s;
}
.square:nth-child(9) {
    height: 3em;
    width: 2.4em;
    -webkit-animation-delay: 6s;
          animation-delay: 6s;
    -webkit-filter: blur(0.5px);
    -webkit-animation-duration: 12s;
          animation-duration: 12s;
}

@-webkit-keyframes squares {
    from {
        -webkit-transform: translateY(100%) rotate(-50deg);
                transform: translateY(100%) rotate(-50deg);
    }
    to {
        -webkit-transform: translateY(calc(-100vh + -100%)) rotate(20deg);
                transform: translateY(calc(-100vh + -100%)) rotate(20deg);
    }
}

@keyframes squares {
    from {
        -webkit-transform: translateY(100%) rotate(-50deg);
                transform: translateY(100%) rotate(-50deg);
    }
    to {
        -webkit-transform: translateY(calc(-100vh + -100%)) rotate(20deg);
                transform: translateY(calc(-100vh + -100%)) rotate(20deg);
    }
}