:root {
    --primary-text-color: rgba(40, 40, 40, 1.0);
    --accent-text-color: rgba(143, 143, 143, 1.0);
    --primary-bg-color: rgba(240, 240, 240, 1.0);
    --secondary-bg-color: rgba(255, 255, 255, 1.0);
    --accent-color: rgba(228, 42, 42, 1.0);
    --accent-color-hover: rgba(255, 69, 69, 1.0);
}

body {
    font-family: 'Barlow', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: var(--primary-text-color);
    background-color: var(--primary-bg-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

a:hover {
    color: var(--accent-color-hover);
}

main {
    padding-bottom: 25px;
}

main strong {
    font-weight: 700;
}

main section {
    line-height: 1.5em;
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1200px;
}

main section h2 {
    font-weight: 400;
}

.header {
    font-family: 'Source Serif 4', serif;
    font-size: 3.25em;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
}

.header span {
    display: block;
    font-size: 0.32em;
    font-style: italic;
    letter-spacing: 0.025em;
    text-transform: none;
    color: var(--primary-text-color);
    padding-bottom: 10px;
}

.header a {
    text-decoration: none;
    color: var(--accent-color);
}

.menu {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--secondary-bg-color);
}

.menu a {
    display: block;
    padding: 15px 10px;
    color: var(--primary-text-color);
    border-bottom: 2px solid var(--primary-bg-color);
}

.menu a:hover,
.menu a.active {
    color: var(--accent-color);
}

.menu {
    text-align: center;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
    display: inline;
}

.menu a {
    display: inline-block;
    border: none;
}

.menu a.active {
    border-top: 2px solid var(--accent-color);
}

.copyright {
    font-size: 0.875em;
    text-align: center;
    color: var(--accent-text-color);
    padding-bottom: 25px;
}

/* Glide */

.glide {
    margin: 0 auto;
    text-align: center;
}

.glide img {
    max-width: 100vw;
    object-fit: contain;
}

/* Masonry */

.grid {
    margin: 0 auto;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid-sizer,
.grid-item {
    width: 250px;
}

.gutter-sizer {
    width: 25px;
}

.grid-item {
    float: left;
    margin-bottom: 25px;
    background-color: var(--secondary-bg-color);
}

.grid-item img {
    display: block;
    max-width: 100%;
}

.grid-item p {
    line-height: 1.5em;
    margin: 15px;
}

.grid-item a {
    color: var(--primary-text-color);
    text-decoration: none;
}

.grid-item .title {
    font-weight: 500;
    font-style: italic;
}

.fslightboxsn {
    font-family: 'Barlow', sans-serif;
}