@media only screen and (max-width: 800px) {
    .slider-container {
        height: auto !important;
    }
}
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    z-index: 0;
}
.slides {
    display: flex;
    width: 2000%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}
.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.blur-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.5);
    z-index: -1;
    transition: background-image 0.5s ease-in-out;
}
.overlay {
    
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.img-desc{
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    max-width: 20vw;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.nav-buttons button {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 20px;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.nav-buttons button:hover {
    background: rgba(0, 0, 0, 0.9);
}