:root {
    --main-text: #5A544C;
    --accent-text: #7E528E;
}

html {
    color: var(--main-text);
    background-color: #FFFAF0;

    /* don't want to load something external */
    font-family: Arial, Helvetica, sans-serif;

    /* TODO: scale this with screen size? */
    font-size: 20px;
}

body {
    /* center the body, and pad it slightly should the screen
     * not be very wide */
    max-width: 32rem;
    margin: auto;
    margin-block: 1.0rem;

    padding-inline: 1.0rem;
    padding-block: 0.5rem;

    background-color: #FAF5EB;
    background-color: #f8f3e9;
}

h1,
h2,
h3 {
    margin: 0.5rem;
    margin-inline: 0.25rem;
}

h1,
h2 {
    color: #7E528E;
}

p {
    margin: 0.25rem;
}

header {
    /* padding: 0.5rem; */
    /* border: 3px solid #5A544C; */
}

footer {}

hr {
    /* firefox has a border by default, chrome doesn't, so
     * just make them the same */
    border: none;
    background-color: #5A544C;
    height: 0.15em;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

section {
    margin-bottom: 3rem;
}

/* align subsections with text in the main section  */
section>section {
    margin-inline: 0;
    /* padding-left: 1rem; */
}

.dot {
    font-weight: normal;
    color: var(--main-text);
}

.dinkus {
    text-align: center;
    font-size: 40px;
    color: var(--accent-text);
}

a {
    transition: background-color 0.25s ease;
}

a:link {
    color: var(--main-text);
}

a:visited {
    color: var(--accent-text);
}

a:hover {
    background: #7E528E40;
}

header,
main,
footer,
section {
    /* background: oklch(68.6% 0.081 360.0 / 20%); */
    /* background: #e7a4b860; */
    /* background: #ff9b0030; */
    /* border: 5px solid #e7a4b860; */
}
