*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    -webkit-text-size-adjust: 100%;
    --background-color: #1f2937;
    --text-color: #f3f4f6;
    --heading-color: #ffffff;
    --brand-color: #b54a08;
    --brand-color-light: #fccdb1;
    --focus-color: #0873b5;
    --line-color: #4a5464;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: var(--background-color);
    color: var(--text-color);
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    padding: 0 20px;
    gap: 20px;
}
img {
    display: block;
    width: 100%;
    max-width: 250px;
    margin-bottom: 60px;
}
h1 {
    overflow-wrap: break-word;
    color: var(--heading-color);
    font-weight: 900;
    text-align: center;
    width: 100%;
    max-width: 600px;
    font-size: 1.8rem;
}
hr {
    border: none;
    border-top: 1px solid var(--line-color);
    width: 100%;
    max-width: 600px;
}
p {
    overflow-wrap: break-word;
    text-align: center;
    width: 100%;
    max-width: 600px;
}
div.actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--brand-color);
}
div.actions a {
    display: block;
    padding: 8px 16px;
    font-weight: bold;
    background: var(--brand-color);
    color: var(--text-color);
    border-radius: 4px;
    text-decoration: none;
    flex-grow: 1;
    text-align: center;
    transition: transform 75ms ease;
}
div.actions a:focus-visible {
    outline: 0;
}
div.actions a:hover {
    background: var(--brand-color-light);
    color: var(--background-color);
}
div.actions a:active {
    transform: scale(0.92);
}
div.actions a:focus-visible {
    background: var(--focus-color);
    color: var(--text-color);
}
div.actions a.simple {
    background: none;
    border: 1px solid transparent;
    transition: transform 75ms ease;
}
div.actions a.simple:hover {
    border-color: var(--brand-color-light);
    color: var(--brand-color-light);
}
div.actions a.simple:focus-visible {
    border-color: var(--focus-color);
    background: var(--focus-color);
    color: var(--text-color);
}
