html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


/* Styles for slideshow container */
.slideshow-container {
    max-width: 100%; /* Adjusted for full browser width */
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 92vh; /* Adjusted for full browser height */
    overflow: hidden; /* Hide overflow */
}

/* Styles for slideshow images */
.mySlides {
    position: absolute;
    width: 95%;
    height: 100%;
    opacity: 0;
    transition: opacity 4s ease;
}

    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
