body {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sitka Subheading Semibold';
    color: #333;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
}

p {
    font-size: 1.1em;
    color: #666;
}

.content {
    text-align: left;
    max-width: 1000px;
}

img {
    max-width: 100%;
    height: auto;
}

figcaption {
    text-align: center;
}

#navbar {
    background-color: rgb(55, 55, 55);
    overflow: auto;
    position: fixed;
    top: 0;
    width: 100%;
}

#navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

#navbar a:hover {
    background-color: #ddd;
    color: black;
}

.images-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.image-container {
    flex: 1 0 calc(25% - 10px);  /* 1/3 approximately, 10px is the margin */
    margin: 5px;
    box-sizing: border-box;
}

.image-container-2 {
    flex: 1 0 calc(50% - 10px);  /* 1/3 approximately, 10px is the margin */
    margin: 5px;
    box-sizing: border-box;
}

.image-container-3 {
    flex: 1 0 calc(33.33333% - 10px);  /* 1/3 approximately, 10px is the margin */
    margin: 5px;
    box-sizing: border-box;
}

.image-fulldisplayer {
    flex: 1 0 100%;
    margin: 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-container img {
    width: 100%;
    height: auto;
}