body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #efeeea;
    overflow: hidden; /* Prevent scrolling */
}

.carousel {
    position: relative;
    width: 80%;
    max-width: 1500px;
    max-height: 100vh; /* Set max height to window height */
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(254, 119, 67, 1);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 30px;
    transition: background-color 0.3s ease;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}
