.carousel-container {
    overflow: hidden;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin-top: 30px;
}

.carousel img {
    width: 100%;
    height: auto;
}