/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
    background: black;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styling */
.container {
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

h1, h2 {
    color: black;
    text-align: center;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    text-align: center;
    margin: 2rem 0;
    color: #666;
    font-size: 0.9rem;
}

.image-container {
    display: flex;
    justify-content: space-between;  /* Space out the images evenly */
    gap: 1px;                      /* Optional: space between images */
    margin: 1px;                 /* Optional: margin around the container */
}

.photo {
    width: 30%;                     /* Makes each image take up about half of the container width */
    height: 30%;                   /* Maintain aspect ratio */
    display: block;                 /* Remove any extra space below the images */
}

.banner {
    width: 100%; /* Makes the banner take up the full width of the screen */
    overflow: hidden; /* Ensures that any image overflow is hidden */
}

.banner-image {
    width: 100%; /* Makes the image resize to fill the width of the banner */
    height: auto; /* Keeps the aspect ratio of the image intact */
}

.code-font {
    font-family: 'Courier New', Courier, monospace; /* Code-style font */
    font-size: 1.5em; /* Larger font size */
    background-color: #f0f0f0; /* Optional: to add a code block background */
    padding: 2px 5px; /* Optional: to add spacing around the text */
    border-radius: 3px; /* Optional: rounded corners for the code block look */
}