/* * aos.css * A CSS file for the AOS library. * * This file contains styles for the AOS library, which provides animated transitions * when elements are scrolled into view. */ /* Import base styles */ @import "base.css"; /* AOS animations */ @layer aos { .aos-animate { animation: aos-animation 0.6s ease-out; } @keyframes aos-animation { from { opacity: 0; transform: translateX(-50%); } to { opacity: 1; transform: translateX(0); } } } /* Custom styles for AOS */ /* Add your custom styles here */