@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hero h1 {
    animation: fadeIn 2s ease-in-out;
}
