:root {
    --burnt-orange: #bf5700;
    --burnt-orange-light: #ffdec2;
    --blue-grey: #333f48;
}

html {
    background-color: var(--burnt-orange-light);
    margin: 0 auto;
    width: min(85%, 800px);
    font-size: 16px;
    overflow-wrap: anywhere;
}

body {
    color: var(--blue-grey);
    font-family: "Libre Franklin";
    font-weight: 400;
}

#logo {
    border: 0px;
}

img:not(#logo) {
    border: solid var(--blue-grey) 1px;
}

img, video {
    max-width: 100%;
    margin: auto;
}

object {
    width: 100%;
    height: 400px;
}

#header {
    margin-bottom: 0px;
}

#header > a {
    color: var(--burnt-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#header > a:hover {
    text-decoration: none;
}

#header > a > img {
    height: 50px;
    margin: 0;
}

#header > a > h1 {
    font-size: 24px;
    font-family: "Charis SIL";
}

nav {
    color: var(--burnt-orange);
}

nav > ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding: 0;
    list-style-type: none;
}

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

a:hover {
    text-decoration: underline;
}

#separator {
    display: flex;
    align-items: center;
    gap: 10px;
}

hr {
    border: none;
    border-top: 1px solid var(--burnt-orange);
    height: 0px;
    flex-grow: 1;
}

#gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

#gallery > img {
    height: 300px;
}

figcaption {
    text-align: center;
    font-size: 14px;
}

blockquote {
    border: solid var(--blue-grey) 1px;
    padding: 5px 20px;
}

#title-text {
    margin: 0;
    color: var(--burnt-orange);
    font-weight: bold;
    flex-basis: auto;
}

#footer {
    color: var(--burnt-orange);
}

#footer > ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding: 0;
    list-style-type: none;
}

.card-group {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.member-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.member-card > img {
    margin: 0;
    max-width: 100px;
}

.member-card > .info {
    padding-inline-start: 0;
    list-style-type: none;
}