:root {
    --text: #fff;
    --background: #333333;
    --background-alt: #043027;
}

body {
    background-color: var(--background);
    color: var(--text);
    width: 100vw;
    overflow-x: hidden;
    margin: auto;

    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
}

a:link, a:visited {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: var(--background-alt);
    padding: 2vh 10vw;
    text-align: center;
    font-family: depot-new-web, sans-serif;
    font-weight: 300;
    font-style: normal;


}

header h1 {
    font-family: trilby, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3em;
}

section {
    width: 50vw;
    margin: auto;
    padding: 10vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: depot-new-web, sans-serif;
    font-weight: 400;
    font-style: normal;
}

section h2 {
    font-family: trilby, serif;
    font-weight: 700;
    font-style: normal;
}

section button {
    width: fit-content;
    margin: auto;
}

footer {
    margin-top: auto;
    background-color: var(--background-alt);
    padding: 2vh 10vw;
    text-align: center;
    font-family: trilby, serif;
    font-weight: 400;
    font-style: normal;
    font-size: smaller;
}

.spacer {
    aspect-ratio: 960/100;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top {
    background-image: url('../images/top.svg');
}

.bottom {
    background-image: url('../images/bottom.svg');
}