html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: #fff;

    font-family: "Lora", serif;
    font-weight: 400;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

*::selection {
    background-color: #000;
    color: #cfa561;
}

.holder {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: black;
}

.layout {
    max-width: 600px;
    margin: auto;
}

.content {
    text-align: center;
    padding: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather", serif;
    font-weight: 900;
    line-height: 1.2;
}

h1 {
    font-size: 30px;
}

h1 span {
    color: #cfa561;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.lobotomize * + * {
    margin-top: 1rem;
}

.text-content {
    font-size: 20px;
    line-height: 2;
}

.text-content a {
    color: #e1c57e;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #e1c57e7f;
    text-decoration-thickness: 1px;
    text-decoration-style: solid;
    transition: text-decoration-color 0.5s ease;
}

.text-content a:hover {
    text-decoration-color: #e1c57e;
}

.content * + img {
    margin-top: 2rem;
}

.content img + * {
    margin-top: 2rem;
}
