html, body {
    height: 100%;
    margin: 0; /* Not sure I want this? */
}

body {
    font-family: 'Roboto Mono', monospace;
    display: flex;
    flex-direction: column;
    font-size: 1em;
}

header {
    background-color: #f4f4f4;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-decoration: none;
    color: #000;
    font-size: 2em; /* Adjust as needed */
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.5em;
}

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

main {
    flex: 1; /* Take up available space */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Center text */
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between images */
    margin: 2rem 1rem; /* Margin above and below the gallery, with side spacing */
}

.gallery-image {
    max-width: 800px; /* Maximum width for larger screens */
    width: calc(100% - 2rem);  /* Responsive image, considering side padding */
    margin: 0 auto; /* Center the images */
    height: auto; /* Maintain aspect ratio */
    border: none; /* Remove border for sharp edges */
    border-radius: 0; /* No rounded corners */
    box-shadow: none; /* Remove shadow for sharp look */
}

.profile-image {
    max-width: 800px; /* Set a maximum width for larger screens */
    width: 80%; /* Responsive size on smaller screens */
    height: auto; /* Maintain aspect ratio */
    margin: 1rem 0; /* Space above and below the image */
    display: block; /* Ensure it's a block element */
    border: none; /* Remove border for sharp edges */
    border-radius: 0; /* No rounded corners */
}

.about-blurb {
    max-width: 800px; /* Limit width for readability */
    margin: 2rem 1rem; /* Margin above and below the blurb */
    padding: 1rem; /* Padding for some space around the text */
    font-size: 1.25em;
}

footer {
    background-color: #f4f4f4;   /* Background color of the footer */
    text-align: center;          /* Center the content */
    padding: 1rem 0;            /* Padding for top and bottom */
    position: relative;          /* Allow positioning for responsiveness */
}

footer a {
    margin: 0 1rem;
    text-decoration: none;
}

.social-icon {
    width: 2.5rem;                 /* Icon size */
    height: 2.5rem;                /* Icon size */
    margin-top: 1rem;           /* Space for better appearance */
}
