body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.carousel2 {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel2-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel2-images img {
    width: 100%;
    height: auto;
    min-width: 100%;
}

button {
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}