/* Default styles without animation */
.some-element {
    transition: all 0.3s ease;
}

/* Add some animations */
.animate-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}