@font-face {
    font-family: 'Roboto Slab';
    src: url(../fonts/RobotoSlab-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Roboto Flex';
    src: url(../fonts/RobotoFlex-VariableFont_GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,opsz\,slnt\,wdth\,wght.ttf);
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-text);
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

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

@media (min-width: 768px) {
    .text-md-start {
        text-align: left;
    }
    
    .text-md-end {
        text-align: right;
    }
    
    .text-md-center {
        text-align: center;
    }
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
}

ul ul {
    list-style: circle;
}

ul ul ul {
    list-style: square;
}

ol {
    list-style: decimal;
}

ol ol {
    list-style: lower-alpha;
}

ol ol ol {
    list-style: lower-roman;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    margin-top: 1em;
    font-weight: 700;
}

h1, .h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2, .h2 {
    font-size: 1.625em;
    margin-bottom: 0.4em;
}

h3, .h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3em;
}

h4, .h4 {
    font-size: 1em;
    margin-bottom: 0.2em;
}

p + p {
    margin-top: 1em;
}

.quote {
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.625rem;
    margin: 1rem 0;
}

.quote__text {
    margin-bottom: 1.563rem;
}

.quote__text::before {
    content: url(/assets/images/quote.svg);
    display: block;
    margin-bottom: 0.625rem;
}

.quote__footer {
    font-family: var(--font-heading);
    color: var(--color-text-muted);
}

.quote__author {
    font-weight: bold;
    font-size: 1rem;
}

.quote__author-position {
    font-size: 0.875rem;
}
