html {
    font-size: calc(16px + 0.5vw);
    font-family: "Lexend", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Delius', Arial, sans-serif;
}

button, a.button {
    font-family: inherit;
    font-size: inherit;
    appearance: none;
    border: 0.2em solid;
    padding: 0.2em 0.5em;
    border-radius: 0.3em;
    background: inherit;
    color: inherit;
    display: flex;
    justify-content:center;
    align-items: center;
    text-decoration: none;
}
button:hover {
    background-color: #444499;
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0 0.5em;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1em;
}

header {
    text-align: center;
    padding-top: 1em;
}

main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1em;
}

main section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

#hero img {
    width: 16em;
}

footer {
    text-align: center;
}
