:root {
    --bg-darker: #182028;
    --bg-main: #1F2830;
    --title: #F0EAE0;
    --body-text: #9AB0BE;
    --teal: #3D7A6E;
    --amber: #D4874A;
}

main {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    text-align: left;
    color: var(--title);
    font-family: "Supermercado One";
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 3rem;
}

h3 {
    color: var(--title);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--body-text);
}

ul {
    color: var(--title);
    list-style-type: square;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    margin-left: 3rem;
}

blockquote {
    border-left: 3px solid orangered;
    background-color: var(--bg-main);
    padding: 1rem 0.8rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    min-height: 25.6px;
}

article {
    background-color: var(--bg-darker);
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.8rem;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 576px) {
    article {
        width: 100%;
        padding: 1rem 0.5rem;
    }

    h3 {
        margin-top: 1rem;
        margin-bottom: 0.8rem;
    }
}