.slideshow {
    position: relative;
}

#ShowForm {
    padding: 10px 20px;
    font-size: 1.5em;
    line-height: 1.5;
    border: none;
    cursor: pointer;
}

.slideShowText {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: linear-gradient(to bottom, rgb(62, 60, 60), rgb(36, 7, 179));

    /* Make the gradient the text color instead of the element's background */
    -webkit-background-clip: text;
    background-clip: text;

    /* Make the text color transparent to reveal the background */
    color: transparent;

    /* Other styling for better visibility */

    font-weight: bold;
}

@media (max-width: 764px) {
    .display-3 {
        font-size: 50px;
    }

    .intro-text h1 {
        font-size: 32px;
        /* Smaller font size for screens 764px or less */
    }
}

@media (max-width: 505px) {
    .display-3 {
        font-size: 35px;
    }
}

.slideshow-container {
    top: 63px;
    position: relative;
    width: 100%;
    height: 120vh;
    /* Adjust the height as needed */
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-image:first-child {
    opacity: 1;
}

.content-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}