body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black; /* Set background to black */
    color: white; /* Set text color to white */
}

header, footer {
    text-align: center;
    padding: 1em;
    background-color: #333; /* Darker shade for header and footer */
    color: white;
}

.container {
    display: flex;
    flex-direction: row;
}

/* Update flex-basis for .sidebar */
.sidebar {
    flex-basis: 20%; /* Now 1/5th of the screen */
    /* Other styles remain unchanged */
}


.content {
    flex-grow: 1; /* Takes the remaining space */
    padding: 20px;
    background-color: #000; /* Ensuring content area also has black background */
    color: white;
}

.sidebar h1, .sidebar ul {
    margin: 0;
    padding: 0;
    color: white;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li {
    cursor: pointer;
    padding: 10px;
    background-color: #444; /* Slightly lighter than sidebar for contrast */
    margin-top: 5px;
    color: white;
}

.sidebar ul li:hover {
    background-color: #555; /* Highlight on hover */
}

/* Media query for devices with a max-width of 768px */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        flex-basis: auto; /* Reset flex-basis */
        order: -1; /* Move sidebar (tabs) under the header */
    }

    .sidebar ul {
        display: flex;
        justify-content: space-around;
    }

    .sidebar ul li {
        padding: 10px;
        margin: 0; /* Remove margin between tabs */
    }
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

/* Hide the images by default */
.slide {
  display: none;
  text-align: center; /* Center slideshow images */
}

/* Style the images */
.slide img {
  max-height: 90vh; /* Make sure images don't exceed the viewport height */
  max-width: 100%; /* Ensure the width is also responsive */
  object-fit: contain; /* This makes sure that the aspect ratio is preserved */
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

