#line-anim-container {
    transform: skewY(45deg);
}

#lineh1 {
    position: absolute;
    left: 0;
    top: -150px;
    height: 25px;
    animation: lineH 5s 0.5s infinite linear;
}

#lineh2 {
    position: absolute;
    left: 0;
    top: -100px;
    height: 20px;
    animation: lineH 5s 2s infinite linear;
}

#lineh3 {
    position: absolute;
    right: 0;
    top: -55px;
    height: 25px;
    animation: lineH 5s 1s infinite linear;
}

#lineh4 {
    position: absolute;
    left: 0;
    top: 1250px;
    height: 20px;
    animation: lineH 5s 4s infinite linear;
}

#lineh5 {
    position: absolute;
    right: 0;
    top: 1300px;
    height: 10px;
    animation: lineH 4s 1s infinite linear;
}

#lineh6 {
    position: absolute;
    right: 150px;
    top: 1350px;
    height: 20px;
    animation: lineH 4s 0s infinite linear;
}

@keyframes lineH {
    0% {
        width: 0%;
    }

    75% {
        opacity: 0.8;
    }

    100% {
        width: 95%;
        opacity: 0;
    }
}