body {
    margin: 0;
    font-family: Times, sans-serif;
    font-weight: 300;
    letter-spacing: 1.0px;
    text-align: center;
    background-color: black;
    color: white;
}

.responsive-image {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains the aspect ratio */
    display: grid; /* Centers the image if margin auto is applied */
    margin: 40px auto; /* Centers the image horizontally with auto margins */
    border-radius: 0px; /* Optional: adds rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow effect */
}

.image-box {
    max-width: 300px; /* Set a maximum width for the box */
    margin: 20px auto; /* Center the box horizontally */
    padding: 10px; /* Padding inside the box */
    border: 0px solid #ddd; /* Border around the box */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center-align text inside the box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
}

.responsive-image {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 10px; /* Optional: rounded corners for the image */
}

.image-name {
    font-size: 1.2em; /* Font size for the name */
    margin-top: 10px; /* Space between the image and the name */
    color: #333; /* Text color */
}


.banner {
    background-color: darkred;
    color: white;
    padding: 10px;
    text-align: center;
    
}

.banner nav {
    display: inline;
}

.banner nav a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1.5em;
}

.banner nav a:hover {
    background-color: crimson;
    font-size: 1.7em;
}

h1 {
    font-size: 2.5em; /* Font size for the header */
    margin: 50px 0; /* Margin for spacing */
}

h2 {
    font-size:1.5em;
    margin: 0px;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}
    

p {
    font-size: 1.5em;
    max-width: 600px; /* Maximum width for paragraphs */
    margin: 75px auto; /* Center the paragraph with auto margins */
    text-align: justify;/* Font size for paragraph text */
    overflow-wrap: break-word;
}

.footer {
    background-color: darkred; /* Darker background color */
    color: white; /* Light text color for contrast */
    padding: 5px; /* Padding for spacing */
    text-align: center; /* Center the text */
    bottom: 5px; /* Stick to the bottom of the page */
    width: 100%; /* Full width */
}

.footer p {
    font-size: 0.6em; /* Smaller font size */
    margin: 5px 0; /* Less margin */
}


