* {
    padding: 0 !important;
    margin: 0 !important;
}

.circle {
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
}

#particle-canvas {
    width: 100%;
    height: 100%;
}

#tsparticles {
    position: absolute !important;
    z-index: 1 !important;
    height: 800px;
    /* width: 88.2%; */
    overflow-x: none;
}

span.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}