body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #333; /* Change the background color as needed */
    overflow: hidden;
    display: flex;
    justify-content: center; /* Center the items horizontally */
}

.navbar a {
    color: white;
    padding: 14px 20px; /* Adjust the padding to increase space */
    text-decoration: none;
    text-align: center;
    margin-right: 10px; /* Add margin to create space between buttons */
}

.navbar a:hover {
    background-color: #ddd; /* Change the background color on hover */
    color: black;
}

/* Container for the slideshow */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

/* Individual slides */
.mySlides {
    display: none;
}

/* Previous and Next buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Style for hover effect on buttons */
.prev:hover, .next:hover {
    background-color: #ddd;
    color: black;
}

/* Text at the bottom of the slideshow */
.text {
    color: #f2f2f2;
    font-size: 18px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Styling for the footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Styling for individual columns within the footer */
.column {
    width: 30%; /* Each column takes up 30% of the width */
    display: inline-block; /* Display columns side by side */
    vertical-align: top; /* Align columns to the top */
    text-align: left; /* Left-align text within columns */
    padding: 10px; /* Add padding for spacing */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
.column {
width: 100%; /* Make columns take up full width on small screens */
display: block; /* Display columns as blocks (stacked) */
  }
}
