@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #1a202c;
}

.prose p {
    line-height: 1.6;
    margin-bottom: 1em;
    color: #4a5568;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-top: 1em;
}

.prose ul li {
    margin-bottom: 0.5em;
}

.prose a {
    color: #84cc16;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.animate-slideUp {
    animation: slideUp 1s ease-in-out;
}