html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: "Roboto Slab", sans-serif;
}

header, footer {
    position: fixed;
    left: 0;
    right: 0;
    background-color: gray;
    font-weight: lighter;
}

header {
    top: 0;
    height: 50px;
    color: white;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a, a:hover, a:visited {
    color: white;
    margin: 0 15px;
}

.logo {
    font-size: 30px;
}

span {
    color: #f9ad81;
}

footer {
    bottom: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    color: white;
    background-color: black;
}

footer a, a:hover, a:visited {
    color: inherit;
}

main {
    display: flex;
    height: 100%;
    box-sizing: border-box;
    border: 0;
    border-top: 50px solid white;
    border-bottom: 50px solid white;
}

section#middle {
    overflow: auto;
}


.clearfix{
    clear:both;
}

div.scroll-container {
    display: flex;
    overflow: auto;
    white-space: nowrap;
    padding: 15px;
    height: 100%;
    scrollbar-color: #f9ad81 rgb(52, 49, 49);
}

div.scroll-container img {
    padding: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-container img:hover {
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 50%;
    max-width: 400px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 400px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #f9ad81;
    text-decoration: none;
    cursor: pointer;
}


/* curtain menu styling */
.curtain-menu {
    position: fixed;
    height: 100%;
    width: 0; /* Initially hidden */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.2s; /* Smooth sliding effect */
    z-index: 1000;


    
}

.curtain-menu .menu-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: Verdana, sans-serif;
    max-width: 80%; /* Allow the content to stretch closer to the edges */
}


.menu-content h3 {
    color: #f9ad81;
}

.curtain-menu a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    margin: 20px 0;
    transition: 0.3s;
}

.curtain-menu a:hover {
    color: #f9ad81;
}

.curtain-menu .closebtn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.menu-button {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
