.movies {
    display: flex;
    overflow-x: scroll;
    border-radius: 5px;
    scroll-snap-type: mandatory;
    /* margin-bottom: 20px; */
    scroll-padding: 0 15px;
}

.movies a{
    width: -webkit-fill-available;
}

.movies::-webkit-scrollbar {
    display: none;
}

.movie {
    position: relative;
    /* width: 300px; */
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    /* margin: 0 5px; */
}

@media (max-width: 700px) {
    .movie{
        width: 185px;
    }

.movies .movie img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

}

@media (min-width: 701px) {

    .movies .movie img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    }

/* Tambahkan gaya untuk tombol */
.movies .movie button {
    border-radius: 5px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 1; Pastikan tombol berada di depan gambar */
    background: #ffffff;
    font-weight: bold;
    box-shadow: 0px 6px 2px 0px rgba(0,0,0,0.4)
}
.movies button {
    max-height: 30px;
    border-radius: 8px;
    position: relative;
    top: -7px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 1; Pastikan tombol berada di depan gambar */
    background: #ffffff;
    font-weight: bold;
    box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.2)
}
.btn-findus {
    max-height: 30px;
    border-radius: 8px;
    position: relative;
    top: -7px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 1; Pastikan tombol berada di depan gambar */
    background: #ffffff;
    font-weight: bold;
    box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.2)
}
