:root {
    --green-light: #74c140;
    --green-dark : #15864e;
}

@font-face {
    font-display: swap;
    font-family: "Titillium Web";
    font-style: normal;
    font-weight: 400;
    src: url("/static/fonts/titillium-web-v19-latin-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Titillium Web";
    font-style: normal;
    font-weight: 700;
    src: url("/static/fonts/titillium-web-v19-latin-700.woff2") format("woff2");
}

@font-face {
    font-family: "Meow Script";
    font-style: normal;
    font-weight: 400;
    src: url("/static/fonts/meow-script-v5-latin-regular.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Titillium Web", sans-serif;
}

h1 {
    font-family: "Meow Script", sans-serif;
    font-size: 270%;
}

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

#logo {
    background-repeat: no-repeat;
    z-index: 1;
}

#logo_gradient {
    width: 100%;
    background-image: linear-gradient(to right, var(--green-light), var(--green-dark));
}

#logo_white {
    width: 100%;
    top: 0;
}

header nav {
    background-color: var(--green-dark);
}

header nav ul {
    list-style: none;
}

header nav a {
    color: white;
}

main {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

main li {
    margin-top: 0.4em;
}

figcaption {
    font-size: smaller;
    text-align: right;
}

footer {
    background-color: var(--green-dark);
    color: white;
    padding: 0.7em;
    text-align: center;
}

footer a {
    color: white;
}

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

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}
