@charset "UTF-8";

body, button, input, select, optgroup, textarea {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
    line-height: 1.4;
    font-weight: 400;
}

a {
    color: #b34a4a;
}
a:visited {
    color: #b34a4a;
}
a:hover {
    text-decoration: none;
}

container {
    width: 100%;
}

.header {
    min-height: 45em;
    max-height: 45em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 45em;
    max-height: 45em;
}
.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-background:after {
    content: '';
    background: #3e3f46;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.header-text {
    width: 75%;
    margin: 5%;
    position: relative;
    color: #ffffff;
}

.entry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1%;
}
.entry-image {
    flex-basis: 600px;
    flex-grow: 1;
}
.entry-image img {
    width: 100%;
    height: 100%;
}
.entry-text {
    color: #3e3f46;
    margin: 5%;
    flex-basis: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.footer {
    text-align: center;
    font-size: 0.875rem;
    color: #afb2bb;
}
