.carousel-container {
    min-height: 85vh;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.582);
    /* Adjust the 0.6 to make it darker or lighter */
    z-index: 0;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0px rgba(255, 200, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 200, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 200, 0, 0.4);
    }
}