.slider {
    width: 400px; /* Adjust width as needed */
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    flex: 0 0 auto;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}
