body {
    background-color: var(--bg);
    color: var(--dark);
    font-family: var(--font);
    line-height: var(--line-md);
    letter-spacing: -0.25px;
    text-transform: lowercase;
    text-align: justify;
    border: 1rem solid var(--lightest);
    padding: 6rem 0;
    font-size: var(--text-md);
}

@media (max-width: 576px) { 
    body{
         padding: 3rem 1rem;
         text-align: left;
         font-size: var(--text-sm);
         border:0.5rem solid var(--lightest);
    }
}

h1,
h2 {
    line-height: 100%;
}

h2{
    margin-bottom: 1.5rem;
}

p,
h3 {
    margin-bottom: 0.75rem;
}

.muted {
    color: var(--light);
}

a {
    color: currentColor;
    border-bottom: 1px solid currentColor;
    text-decoration: none;
    transition: color 0.2s ease, border 0.2s ease;
    padding-bottom: 2px;
}

a:hover {
    color: var(--red);
    border-bottom: 1px solid var(--red);
}

main, header, footer {
    max-width: 32rem;
    margin: 0 auto;
}


/* ===== DIVIDERS ===== */

.divider-light {
    border-top: 0.03125rem solid var(--light);
    padding-top: 6rem;

}

.divider-red {
    border-top: 0.03125rem solid var(--red);
    padding-top: 6rem;

}




/* ===== UTILITY CLASSES ===== */
.mb {
    margin-bottom: 0.75rem;
}

.mb-lg{
    margin-bottom:3rem;
}

.center{
    text-align: center;
}

.bl {
    margin-bottom: 0;
    color: var(--red);
}

.bl:hover {
    opacity: 0.8;
}

.hl{
    line-height: var(--line-md);
}

.ac{
    text-align: center;
}