@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.zoom-effect {
    animation: zoomIn 20s infinite alternate linear;
}

.slide-content h1 {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.flex.flex-col.space-y-8.text-center
Specificity: (0,4,0)
 {
    background-color: black;
    padding-bottom: 29px;
    padding-top: 12px;
    margin-top: -38px;
}
