body {
    margin: 0;
    /* font-family: "Playwrite CL", cursive;
    font-optical-sizing: auto;
    font-style: normal; */

    font-family: "Merriweather",
        serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
}

img {
    width: 180px;
    height: 180px;
    border-radius: 80px;
    box-shadow: 3px 6px 12px rgba(0, 0, 0, .666);
    object-fit: cover;
}

header {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 48px 0;
    font-size: 1.4em;
    justify-content: center;
}

body {
    align-items: stretch;
    justify-content: stretch;
    min-height: 100vh;
    overflow: auto;
}

section {
    /* width: 900px;
    max-width: 60vw; */
}

section,
body {
    display: flex;
    flex-direction: column;
}

.row,
nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

nav {
    justify-content: space-between;
    padding: 8px 24px;
}

a,
a:hover,
a:active {
    color: black;
}

article {
    padding: 48px;
    display: flex;
    flex-direction: column;

    justify-content: center;
}

input {
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: inset 3px 4px 3px rgba(0, 0, 0, .666);
}

button {
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 3px 4px 3px rgba(0, 0, 0, .666);
}


.newsletter {
    background: black;
    color: white;
}

footer.end {
    background-color: black;
    color: white;
    font-size: 10px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    align-self: stretch;

    a,
    a:hover,
    a:active {
        color: white;
    }

    padding: 24px 0;

}

.--coluna {
    display: flex;
    flex-direction: column;

    align-items: stretch;
    justify-content: stretch;
}

.--linha {
    display: flex;
    flex-direction: row;

    align-items: stretch;
    justify-content: stretch;
}

.--quebra {
    flex-wrap: wrap;
}