<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carousel .slide {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #d8e3e3;
}
.carousel .slide .slide-content {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.carousel .slide .slide-content h2 {
    margin: 0;
}

.carousel .image {
    background-color: red;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    fill: #fff;
    cursor: pointer;
}

.carousel .arrow.arrow-left {
    left: 5px;
}

.carousel .arrow.arrow-right {
    left: auto;
    right: 5px;
}

.carousel .arrow-disabled {
    fill: rgba(255, 255, 255, 0.5);
}

.carousel .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

.carousel .dots .dot {
    border: none;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
}

.carousel .dots .dot:focus {
    outline: none;
}

.carousel .dots .dot.active {
    background: white;
}

</pre></body></html>