﻿.animate {
    background-color: #ffcc00;
    overflow: hidden;
    white-space: nowrap;
}

.animate-text {
    display: inline-block;
    color: blue;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: underline !important; /* 底線 */
    padding-left: 100%; /* 從右邊開始 */
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
