<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Button Animations */
.btn-animated {
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    box-shadow: 0.9px 0.5px 1px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.btn-animated:hover {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: rotate 0.7s ease-in-out both;
}</pre></body></html>