@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px); /* Start blurry */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0); /* End sharp */
    }
}

.content {
    animation: fadeIn 1.5s ease-out forwards; /* Animation for content block */
}

h1 {
    opacity: 0; /* Start invisible */
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Delay animation */
}

p {
    opacity: 0; /* Start invisible */
    animation: slideIn 1s ease-out forwards;
    animation-delay: 1s; /* Delay animation */
} 