body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ff0000; /* Red background */
}

header {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    padding: 20px;
    background-color: white;
    color: #ffffff;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 200px; /* Same size for both images */
}

.icon {
    height: 35px;
    transition: transform 0.3s;
}

.icon:hover {
    transform: scale(1.1);
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ff0000; /* Red background */
}

.gallery-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    height: 500px; /* Fixed height for the slideshow container */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensure positioning for arrows */
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%; /* Ensure the slides take up the full container */
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio and fit within container */
    border-radius: 10px;
}

.fade {
    animation: fadeEffect 2.5s ease-in-out;
}

@keyframes fadeEffect {
    from {opacity: .4} 
    to {opacity: 1}
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background-color: white;
    color: black;
}
