body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #d8c0c0;
}
.carousel {
    width: 60%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
}
.carousel img {
    width: 100%;
    display: none;
}
.carousel img.active {
    display: block;
}
.button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #1ab175;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.button:hover {
    background: #0e2d4d;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}