/* Structure */

body {
    max-width: 800px;
    font-family:
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
    margin: auto;
    padding: 16px 16px;
}

section {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 8px;
}

section.row {
    gap: 16px;
}

section .container {
    flex: 1;
}

.no-gap {
    gap: 0px;
}

.row {
    flex-direction: row;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 80%;
}

.left {
    margin-right: auto;
    text-align: left;
}

.right {
    margin-left: auto;
    text-align: right;
}

.center {
    text-align: center;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

header img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

section img {
    display: flex;
    height: auto;
    max-height: 75vh;
    max-width: 50%;
    border-radius: 16px;
}

/* Emphasis */

strong {
    color: #2475c2;
    font-style: normal;
}

/* Text */

h1,
h2,
p {
    padding: 0px;
    font-family: sans-serif;
}

h1 {
    font-size: 42px;
    margin: 0px;
}

h2 {
    font-size: 22px;
    margin-top: 0px;
    margin-bottom: 8px;
}

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

p {
    color: #b8b8b8;
    margin: 2px 0;
}
