body {
    background: #393e4c;
    background-image: linear-gradient(#393e4c, #393e4c, #262a33);
    background-attachment: fixed;
    color: #a6afb5;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 11pt;
    margin: 0;
}

div.center {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

div.content {
    background: #4c4d55;
    padding: 2em;
    width: calc(50% - 4em);
    max-width: calc(600px - 4em);
    border-radius: 1em;
    box-shadow: 0px 0px 20pt 4pt rgba(0, 0, 0, 0.25);
}

div.content p:first-of-type {
    margin-block-start: 0;
}

div.content p:last-of-type {
    margin-block-end: 0;
}

p.indent {
    text-indent: 2em;
}

h1 {
    margin-bottom: 0pt;
}

p.sub {
    margin-top: 0.2em;
    font-size: 12pt;
    font-style: italic;
}

a,
a:visited {
    color: #dbaeb3;
    text-decoration: none;
}

b {
    font-weight: 700;
}

i {
    font-style: italic;
}

/* mobile */
@media all and (max-width: 599px) {
    div.center {
        display: block;
    }

    div.content {
        padding: 1em;
        width: calc(100% - 2em);
        border-radius: 0pt;
    }
}