/* Copyright (c) 2022 jungdawoon (https://codepen.io/dawoony/pen/JjBjxoy)
Fork of an original work Startaê's  background animation using particles.js (https://codepen.io/dawoony/pen/JjBjxoy) */

body {
    background: #090909;
    margin: 0;
    height:  auto !important;
}
#js-particles {
    position: absolute;
    top: -10%;
    width: 100%;
    height: 120%;
    /* background: url(../img/bg.png) center center no-repeat; */
    background-size: cover;
    z-index: 3;
}
#js-particles:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: url(../img/pt.png) center center; */
    opacity: 0.3;
}
@media (max-width:768px){
    #js-particles {
        position: absolute;
        top: 0%;
        width: 100%;
        height: 110%;
        /* background: url(../img/bg.png) center center no-repeat; */
        background-size: cover;
        z-index: 3;
    }
}