* {
    box-sizing: border-box;
}
html, body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
html {
    line-height: 1.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100%;
}
body {
    margin: 0;
    row-gap: 1rem;
    padding: 1rem;
    min-height: 100%;
    max-width: calc(100vw - 2rem);
    width: 25rem;
}
body > * {
    margin: 0;
    display: block;
}
img {
    max-height: 15rem;
    max-width: 15rem;
    border-radius: 50%;
}
p {
    font-weight: 600;
}
span {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
}
@media screen and (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}