@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("/static/fonts/open-sans-v44-latin-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    src: url("/static/fonts/open-sans-v44-latin-700.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Permanent Marker";
    font-style: normal;
    font-weight: 400;
    src: url("/static/fonts/permanent-marker-v16-latin-regular.woff2") format("woff2");
}

:root {
    --blue:       #2a0e71;
    --gold:       #b89a63;
    --light-blue: #433dc2;
    --dark-gray:  #404040;
}

body {
    font-family: "Open Sans";
    margin: 0;
    color: var(--dark-gray);
    background-color: var(--blue);
}

header {
    background-color: white;
    border-bottom: 12px solid var(--gold);
}

header div {
    overflow: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding: 0 2em;
    background-color: var(--blue);
}

#logo {
    background-image: url("/static/logo.png");
    background-repeat: no-repeat;
}

#logo a {
    text-decoration: none;
    color: white;
    display: inline-block;
}

main {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    background-color: white;
    padding: 2em;
}

h1 {
    font-family: "Permanent Marker";
}

ul {
    padding-left: 1.5em;
}

li {
    padding-left: 0.2em;
    margin-bottom: 0.5em;
}

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

.break_all {
    word-break: break-all;
}

footer {
    background-color: var(--gold);
    color: white;
    text-align: center;
    padding: 0.3em 2em;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

footer a,
footer a:visited {
    color: white;
    text-decoration: none;
}
