body {
    background-color: #fbfcf7;
}

:root {
    --text : clamp(1rem, 1.5vw + 01.5vw, 1.2rem); 
    --title_heading : clamp(2rem, 6vw, 3rem);
}



.page-title {
    font-family: "Spectral", serif;
    font-size: var(--title_heading);
    font-weight: 300;

    display: flex;
    justify-content: center;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* .word-underline {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    display: inline-block;
    margin-right: 8px;
} */
main {
    width: min(90%, 950px);
    margin: 0 auto;
}

article {
    font-family: "Spectral", serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.6;
}
article .horizontal-images {
    display: flex;
    flex-direction: row;
    gap: 1.3rem;
    justify-content: center;
}

article p {
    margin: 1.3rem 0;
}
article img {
    width: 40%;
    height: auto;
    display: block;
}