
.carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 60vw; /* Fixed width for the carousel container */
}

.image-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Set the container width to match the carousel width */
}

.image-item {
    min-width: 100%; /* Each image takes up the full carousel width */
    height: 400px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}


@media (max-width: 600px) 
{

    .carousel{
        width: 90vw;
    }

    .image-item{
        min-height: 100vw;
        height: 400px;
    }
}


.btn {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    border-radius:  40px;
}


.btn.prev {
    left: 10px;
}

.btn.next {
    right: 10px;
} 