body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center; /* Center all text inside the body */
}

.roboto-regular {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
}

#wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: white; /* Ensure h1 text is white */
    font-family: 'Roboto', Arial, sans-serif; /* Use the new font */
}

header h1 a {
    color: white; /* Ensure h1 link text is white */
    text-decoration: none; /* Optional: remove underline */
}

header nav {
    margin-top: 20px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block; /* Center the ul */
}

header nav ul li {
    display: inline; /* Make li elements inline */
    margin: 0 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
}

.photo-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.image-container {
    margin: 10px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.left-justify {
    text-align: left; /* Justify text to the left */
    margin: 0 auto;
    width: 80%; /* Optional: Adjust width as needed */
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center; /* Center the footer text */
    width: 100%;
    margin-top: 20px;
}

footer .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the inner content */
}

footer section {
    flex: 1;
    padding: 10px;
}

footer .icons {
    list-style: none;
    padding: 0;
}

footer .icons li {
    display: inline;
    margin: 0 5px;
}

footer .icons li a {
    color: white;
    text-decoration: none;
}

footer p.copyright {
    margin: 20px 0 0 0;
}
