body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: hwb(76 90% 4%);
}
header {
    background-color: hsl(54, 47%, 37%);
    color: white;
    text-align: center;
    padding: 0.5em 0;
}
nav {
    background-color: #333;
}


/* Base styling for the navigation menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: hsl(86, 4%, 34%);
    text-align: center; /* Center-align the menu */
}

nav ul li {
    position: relative; /* Allows submenu positioning */
    display: inline-block; /* Aligns menu items horizontally */
}

nav ul li a {
    color: white;
    padding: 14px 16px;
    display: block;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}

.submenu {
    display: none; /* Hide the submenu initially */
    position: absolute; /* Absolute positioning relative to parent li */
    top: 100%;
    left: 0;
    background-color: #dee2a3;
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 1000; /* Ensure it appears above other content */
    width: 150px; /* Fixed width for submenu */
    text-align: left;
}

.submenu li a {
    color: white;
    padding: 10px;
}

nav ul li:hover .submenu {
    display: block;
}






.content {
    padding: 20px;
	margin-top: 20px; /* Add margin to create space below the menu */
   /* margin-bottom: 60px;*/ /* Adjust based on footer height */
}
.slideshow-container {
    position: relative;
    width: 1280px; /* Fixed width */
    height: 720px; /* Fixed height */
    margin: 1px auto; /* Centering the slideshow horizontally */
    background-color: hwb(76 90% 4%); /* Optional: Set a background color */
    overflow: hidden; /* Hide any overflowing parts of images */
    text-align: center;
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute; /* Positioning slides absolutely within the container */
}
.mySlides img {
    max-width: 100%; /* This ensures the image takes the full width of its container */
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the images within the slide */
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: blue;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 1;
}
.prev {
    left: 10px; /* Position closer to the image */
    border-radius: 3px 0 0 3px;
}

.next {
    right: 10px; /* Position closer to the image */
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: #45a049; /* Darker shade on hover */
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
#gallery img {
    width: 150px;
    height: 150px;
    margin: 10px;
    border: 1px solid #ccc;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }
  table.center {
    margin-left: auto; 
    margin-right: auto;
  }
  