:root, :host, html {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;

    color-scheme: light;
    background-color: #ffffff;
    color: #4e342e;
    font-weight: 400;
    font-size: 100%;
    line-height: 1.25;
    font-family: sans-serif;
    hyphens: auto;
    overflow-wrap: break-word;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.center-vertically {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-grow {
    flex-grow: 1;
}

.container {
    width: 100%;
    max-width: 800px;
    padding-inline: 0.75rem;
    margin-inline: auto;
}

header {
    text-align: center;
    margin-block-end: 1.5rem;
    padding-block: 1.5rem;
}

header img {
    height: auto;
    max-height: 6rem;
    width: 100%;
    max-width: 100%;
}

footer {
    text-align: center;
    font-size: 0.85rem;
    padding-block: 1.5rem;
    margin-block-start: 2.5rem;
}

footer ul {
    display: inline-flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer a {
    text-decoration: none;
    color: inherit;
}

footer a:hover {
    text-decoration: underline;
}

.card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 0.2rem #4e342e solid;
}
