
.clickable {
    position: fixed;
    top: 20px;  /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust exact centering */
    text-align: center;
    font-family: 'EBGaramond', serif;
    font-size: 15pt;
    color: #464545;
    cursor: pointer;
    z-index: 2; /* Keep above other elements */
    text-decoration: none; 
}

/* Hover effect */
.clickable:hover {
    color: rgb(120, 119, 119);
}


.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 5px;
    z-index: 0;
    justify-content: center;
}

.slideshow:hover {
    cursor: e-resize;
}


.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.slideshow-image.visible {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}


html, body {
    height: auto !important;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.slideshow, .slideshow-wrapper, .container, .parent-of-images {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}







 
