/* ===========================
   Index.html 專屬樣式
   =========================== */

/* Hero Banner 慢速旋轉動畫 */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 30s linear infinite;
}