body, html {
    height: 50%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
  
.hero-image {
    background-image: url("/img/banner.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #333;
}
  
#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
#navbar a:hover {
    background-color: #ddd;
    color: black;
}
  
#navbar a.active {
    background-color: #04AA6D;
    color: white;
}

/* Create a right-aligned (split) link inside the navigation bar */
#navbar a.split {
    float: right;
    background-color: #0454aa;
    color: white;
}

h1 {
    text-align: center;
    color: #4CAF50;
    font-size: 40px;
    font-weight: bold;
}

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.slideshow {
    position: relative;
    max-width: 200px;
    margin-right: 15px;
}

.slideshow img {
    width: 100%;
    height: auto;
    display: none; /* Hide all images by default */
    border-radius: 4px;
}

.slideshow img.active {
    display: block; /* Show only the active image */
}

.item {
    display: flex;
    align-items: flex-start;
    border: 1px solid #444;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #222;
}

/*.item img {
    max-width: 200px;
    height: auto;
    display: block;
    margin-right: 15px;
    border-radius: 4px;
}*/

.item-details {
    flex: 1;
}

.item-details h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
}

.item-details p {
    margin: 5px 0;
}

.email-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.email-button:hover {
    background-color: #0056b3;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    font-size: 10px;
    text-align: center;
}