.carousel {
    position: relative;
    width: 60%;
    height: 60%;
    overflow: hidden;
    margin: auto;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel img {
    width: 100%;
    min-width: 100%;
}

.carousel span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
}

.prev-carousel {
    left: 10px;
}

.next-carousel {
    right: 10px;
}