.slideshow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}

.slideshow-text p {
    text-align: left;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.slideshow-buttons {
    margin-top: 10px;
    display: flex;
}

.btncustom {
    padding: 10px 20px;
    font-size: clamp(1rem, 1.6vw, 2rem);
    background: #6EC6D5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    width: 50%;
}

.btncustom:hover {
  background: #6FD6C4;

}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    border: none;
    outline: none;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }
