:root {
    --green: #4e8f36;
    --white: #ffffff;
    --black: #000000;
    --green-dark: hsl(104, 45%, 30%)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 18px;
    scroll-behavior: smooth
}

body {
    font-family: sans-serif;
    line-height: 1.35
}

body:before {
    position: fixed;
    left: 25%;
    right: 25%;
    top: 25%;
    height: 50vh;
    content: "";
    background-image: url(../../../assets/logo-small.png);
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: solid 1px red;
    opacity: .05;
    z-index: -1000
}

h1,
h2,
h3,
h4 {
    font-family: eurostile;
    font-weight: 800;
    margin-bottom: .5rem
}

h1 {
    font-weight: 800;
    font-style: italic;
    font-size: 2rem
}

h1,
h3,
h5,
a {
    color: var(--green)
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem
}

.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 2rem
}

@media screen and (max-width: 640px) {
    .columns {
        display: flex;
        flex-direction: column;
        gap: 1rem
    }

    .columns>img,
    .columns>a {
        order: -1
    }
}

section {
    padding: 4rem 0
}

ul {
    margin-left: 1rem
}

li::marker {
    color: var(--green-dark)
}

hr {
    margin: 5rem 0
}

p,
ul {
    margin-bottom: 1rem
}

ul>ul {
    margin-bottom: 0
}

a.button {
    background-color: var(--green);
    color: #fff;
    border-radius: 1.25rem;
    padding: .25rem 1rem .5rem;
    text-decoration: none;
    font-weight: 600;
    font-family: eurostile;
    font-size: 1.25rem
}

img {
    max-width: 100%;
    width: 100%;
    border-radius: .25rem;
    object-fit: cover
}

details summary {
    font-family: eurostile;
    font-weight: 800;
    position: relative;
    display: flex;
    gap: 1rem;
    color: var(--green-dark)
}

details summary:after {
    content: "⮞";
    margin-left: auto;
    transition: .2s
}

details[open] summary:after {
    transform: rotate(90deg)
}

details summary::marker {
    content: "";
    display: none
}

#site-header-wrapper.svelte-1jm2vyp.svelte-1jm2vyp {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 0 1rem -.5rem #000
}

header.svelte-1jm2vyp.svelte-1jm2vyp {
    padding: 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: center
}

header.svelte-1jm2vyp img.svelte-1jm2vyp {
    max-width: 16rem
}

header.svelte-1jm2vyp a.button.svelte-1jm2vyp {
    margin-left: auto;
    font-size: 1rem
}

#site-footer-wrapper.svelte-1jm2vyp.svelte-1jm2vyp {
    background-color: var(--green-dark);
    padding: 5rem 0
}

#site-footer-wrapper.svelte-1jm2vyp img.svelte-1jm2vyp {
    filter: brightness(5);
    max-width: 12rem
}