@keyframes scroll {
    0% {
        translate: 0 0;
    }

    100% {
        translate: -192px -80px;
    }
}

#animation-section {
    position: relative;
    width: 100%;
    max-width: 768px;
    height: 400px;
    overflow: hidden;
    background-color: black;
}

.load-animation {
    animation: scroll 2s linear infinite;
}

#load-text {
    opacity: 0;
    text-align: center;
    width: 80%;
    max-width: 668px;
    font-weight: 900;
    font-size: large;
    height: 150px;
}