@font-face {
    font-family: "DM Sans";
    src: url("fonts/DM%20Sans/DMSans-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-weight: 100 1000;
    font-stretch: 75% 125%;
    font-style: normal;
}

@font-face {
    font-family: "DM Sans";
    src: url("fonts/DM%20Sans/DMSans-Italic-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-weight: 100 1000;
    font-stretch: 75% 125%;
    font-style: italic;
}

@font-face {
    font-family: "Oranienbaum";
    src: url("fonts/Oranienbaum/Oranienbaum-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: #faf8f7;
    color: #352c2a;
}

body::selection {
    background-color: #d14e2e;
    color: #fff;
}

h1 {
    font-family: "Oranienbaum", serif;
    font-size: 3em;

    @media (max-width: 576px) {
        font-size: 2em;
    }
}

h2 {
    font-family: "Oranienbaum", serif;
    font-size: 2em;

    @media (max-width: 576px) {
        font-size: 1.6em;
    }
}

p {
    font-size: 1.25em;
    line-height: 1.5;
    text-align: justify;
    margin-top: 0;

    @media (max-width: 576px) {
        font-size: 1em;
    }
}

a {
    color: #d14e2e;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > div {
    width: 100%;
    max-width: 900px;
    padding-bottom: 64px;
    padding-top: 64px;
}

.navbar,
article {
    margin-left: 48px;
    margin-right: 48px;

    @media (max-width: 576px) {
        margin-left: 8px;
        margin-right: 8px;
    }
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-bottom: 64px;
}

.navbar a,
.navbar p {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;

    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 24px;

    @media (max-width: 576px) {
        font-size: 1em;
        margin-left: 12px;
    }
}

.navbar p {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.navbar a {
    color: #352c2a;
    text-decoration: none;
}

.navbar a:hover {
    color: #d14e2e;
}

section.section {
    margin-bottom: 64px;
}

section.section img {
    width: 100%;
    margin-bottom: 24px;
}

section.sources ol li {
    margin-bottom: 16px;
}

section.about {
    display: flex;
    flex-direction: row;

    @media (max-width: 576px) {
        flex-direction: column-reverse;
        align-items: center;
    }
}

section.about img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 1000px;
    box-shadow: 3px 3px 30px 0px #352c2a33;

    @media (max-width: 576px) {
        margin-bottom: 24px;
        max-width: 40vw;
        max-height: 40vw;
    }
}

section.about div {
    padding-right: 24px;

    @media (max-width: 576px) {
        padding-right: 0px;
    }
}
