/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@500;700&family=Merriweather:wght@300;400;700&display=swap');

:root {
    --color-bg: #F4F1EA;
    --color-text: #2F2C29;
    --color-text-soft: #5A5550;
    --color-accent: #6D5C8C;
    --color-accent-hover: #564574;
    --color-border: #D9D3C8;

    --font-title: 'Bitter', serif;
    --font-body: 'Merriweather', serif;
}

html {
    font-size: 16px;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--color-text);
    line-height: 1.2;
    font-weight: 700;
    margin-top: 1.32rem;
    margin-bottom: 1.32rem;

    text-align: center;
}

p {
    hyphens: auto;
    text-align: justify;
    line-height: 1.5;
    text-indent: 1.25cm;
    margin: 0 0 1rem 0;
    color: var(--color-text-soft);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: .2s;
}

a:hover {
    color: var(--color-accent-hover);
}

section,
article {
    border-color: var(--color-border);
}

time,
small,
figcaption {
    color: var(--color-text-soft);
}

ul {
    margin: 0 0 1rem 2rem;
    padding: 0;
    color: var(--color-text-soft);
}