@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Inter', sans-serif;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

p {
    font-family: 'Newsreader', serif;
}

.enter {
    animation: enter 0.6s both;
    animation-delay: calc(var(--stagger) * 0.12s);
}

@keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}
