p {
    line-height: 1.4em;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--fg-color);
    background-color: var(--bg-color);
}

body > main {
    width: 28rem;
}

:root {
    /*
    Original color palette: https://lospec.com/palette-list/ibm-51
    */
    --bg-color: #d3c9a1;
    --fg-color: #323c39;
}