/* COMPONENTS */
@import url("./components/navbar.css");
@import url("./components/footer.css");

/* PAGES */
@import url("./pages/home.css");
@import url("./pages/about.css");
@import url("./pages/contact.css");
@import url("./pages/portofolio.css");
@import url("./pages/price.css");

/* GLOBAL */
body {
    font-family: "Inter", sans-serif !important;
}

/* GLOBAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}
.reveal-delay-5 {
    transition-delay: 0.5s;
}
.reveal-delay-6 {
    transition-delay: 0.6s;
}
