img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #cddc39;
    filter: drop-shadow(0 0 8px #ff5722);
}

@media only screen and (min-width: 1000px) {
    .tags {
        margin-top: 10px
    }
}
#scroll-container1 {
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;

}

#scroll-text1 {
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);

    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 100s linear infinite;

}

.span {
    margin-top: 10px;
    color: rgb(255, 255, 255);
    background-color: #000000;
    padding: 5px;
    font-size: 13px;
    border-radius: 10px;
    margin-bottom: 10px;
    opacity: 0.5;
    animation-duration: 19s;

}

/* for Firefox */
#scroll-text

@-moz-keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(-100%);
    }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

