::selection {
    background-color: var(--accent);
    color: #fff;
}

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

a:hover {
    text-decoration: underline;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif", serif;
    font-size: 18px;
    color: #444;
    text-align: justify;
    background-color: var(--bg-color);
    opacity: 1!important;
}

p {
    font-family: "Noto Serif", serif;
    font-size: 17px;
    color: #444;
    text-align: justify;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    width: 90%;
}

h1 {
    text-align: center;
    font-variant: small-caps;
    font-size: clamp(2.8rem, 10vw, 5.5rem);
    margin: 0;
}

h2 {
    text-align: center;
    font-size: clamp(1.3rem, 5vw, 2.5rem);
    margin: 0;
}

p.signature {
    margin: 0;
}

blockquote {
    font-size: 1.5rem;
    border-left: 5px solid var(--accent);
    padding-left: 10px;
}

.top-image {
    width: 75%;
    max-width: 285px;
    border-radius: 50%;
    margin: 30px 0 13px;
    box-shadow: 0 5px 25px #ccc;
}

.image {
    width: 100%;
    max-width: 400px;
    margin: 10px 0 10px;
    box-shadow: 0 5px 25px #ccc;
}

main {
    max-width: 625px;
    width: 90%;
    margin: 0 5%;
}

a.download-button {
    width: 200px;
    background: var(--accent);
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

a.download-button:hover {
    box-shadow: 0 5px 15px #cacaca;
}

figure {
    display: flex;
    justify-content: center;
}

.flex-center {
    display: flex;
    justify-content: center;
}

a.book-cover>img {
    width: 100%;
    margin: 0 0 30px;
    max-width: 400px;
    box-shadow: 0 5px 25px #ccc;
}

.first-letter {
    font-size: 5rem;
    line-height: 0.8;
    float: left;
    margin-right: 5px;
    color: var(--accent);
}

.divider {
    border-top: 1px solid #444;
    margin: 40px 0;
    position: relative;
    color: var(--accent);
    display: flex;
    justify-content: center;
}

.divider::after {
    content: '•';
    font-size: 20px;
    position: absolute;
    top: -14px;
    background: var(--bg-color);
    padding: 0 10px;
}

.text-center {
    text-align: center;
}

:root {
    --bg-color: #f3f2ed;
    --accent: #49b7d4;
    --alt-accent: #d46349;
}

@media screen and (max-width: 750px) {
    blockquote, figure {
        margin: 20px 5px; 
    }
}