@charset "utf-8";

:root {
  --text: #000;
  --bg: #F8FCF2;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: TT-Interphases-Regular, Verdana, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #fff;
    --bg: #29321A;
  }
}

body > * {
    max-width: 600px;
    min-width: 300px;
    color: var(--text);
}

header, address {
    border-radius: 15px;
}

section h2 {
    margin-bottom: 0px;
    margin-top: 0px;
}

header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
    background-color: #A6FFA5;
    text-align: center;
    float: left;
}

header h1 {
    font-size: 96px;
    margin: 0;
    margin-top: 20px;
}

header h2 {
    font-size: 28px;
    margin: 0;
}

p {
    margin: 0px;
    text-align: justify;
    hyphens: auto;
}

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

footer {
    font-style: normal;
    max-width: 600px;
    min-width: 300px;
    width: 100%;
    padding-top: 30px;
}

address, p {
    font-style: normal;
    line-height: 1.5;
}

address {
    background-color: #A6FFA5;
    padding: 10px;
}

address * {
    margin: 0;
    text-align: center;
}

address h1 {
    font-size: 18px;
}

address p {
    font-size: 10px;
}

footer *, header * {
    color: black;
}
