body,
html {

    height: 100%;
    overflow: hidden;
}

.copyright {
    position: fixed;
    bottom: 0;
}

.slideshow-frame {
    position: absolute;
    top: 14.5rem;
    left: 8.125rem;
    right: 8.125rem;
    bottom: 8.125rem;
    background: rgb(0, 0, 0);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.slideshow-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}

.carousel-indicators {
    position: absolute;
    bottom: 6.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 3;
    pointer-events: auto;
}

.carousel-dot {
    width: 0.5625rem;
    height: 0.5625rem;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    background: transparent;
    opacity: 0.33;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.carousel-dot.active {
    border: 1px solid rgb(255, 255, 255);
    background: var(--Red);
    opacity: 1;
}