/* Structure */
        
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

#main-header,
#main-footer {
    margin:auto;
    padding-left: 0;
    padding-right: 0;
}

#main-header {
    background-color: rgb(0, 0, 0);
    padding-top: 0;
    padding-bottom: 5px;
}

#main-footer {
    background-color: maroon;
    padding-bottom: 0;
    padding-top: 5px;
}

/* Horizontal Navigation */

.horizontal-nav ul {
    padding-left: 0px;
}

.horizontal-nav li {
    list-style-type: none;
    margin: 0 5px;
    color: white;
}

.horizontal-nav a {
    text-decoration: none;
}
/* Main Navigation */

/* Add CSS for the search bar */
#search {
    flex: 1; /* Take up available space to push it to the right */
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center; /* Vertically center the input field */
}

#main-nav {
    flex: 2;
    background-color: rgb(116, 1, 1);
    padding: 5px;
}

/* Typography */

a {
    color: white;
}

#main-h1 {
    color: white;
    margin-left: 10px
}

@media only screen and (min-width: 768px) {
    .horizontal-nav ul,
    .flex-container {
        display: flex;
    }
    #main-h1 {
        justify-content: space-between;
        align-items: center;
    }
    #main-nav ul {
        justify-content: space-evenly;
    }
    .flex-container {
        justify-content: space-between;
        align-content: start;
    }
    #mural {
        flex: 1;
        display: block; /* Set to block to ensure it scales */
        max-width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
    }

}