:root {
    --background: #1f1f28;
    --text: #dcd7ba;
    --link: #6a9589;
    --highlight: #ff9e3b;
    --highlight-text: #16161d;
    --overlay: #2a2a37;
    --headers: #658594;
}

:root.light-theme {
    --background: #dcd7ba;
    --text: #1f1f28;
    --link: #6a9589;
    --highlight: #16161d;
    --highlight-text: #ff9e3b;
    --button: #c8c093;
    --headers: #658594;
}

html {
    background-color: var(--background);
    color: var(--text);
    max-width: 33%;
    margin: auto;
    padding: 12px;
    font-family: monospace;
    font-size: 18px;
}

a {
    color: var(--link);
    font-weight: bolder;
    text-decoration: none;
}

h1 {
    color: var(--headers);
    text-align: center;
}

h2 {
    color: var(--headers);
    text-align: center;
}

h3 {
    color: var(--headers);
    text-align: left;
}

::-moz-selection {
    background-color: var(--highlight);
    color: var(--highlight-text);
}

::selection {
    background-color: var(--highlight);
    color: var(--highlight-text);
}

.pfp {
    max-width: 150px;
    border-radius: 180px;
}

.main {
    background-color: var(--overlay);
    padding: 32px;
    border-radius: 32px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content img {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: auto;
}

.post-image {
    border-radius: 48px;
}
