/* Typography */


h1, h2, h3 {
    color: var(--text-color);
    line-height: 140%;
    font-weight: 500;
}

h1 {
    font-size: var(--main-h1-size);
    margin: 10px 0 20px 0;
}

h2 {
    font-size: var(--main-h2-size);
    margin: 10px 0 20px 0;
}

h3 {
    font-size: var(--main-h3-size);
    margin: 10px 0 20px 0;
}

p {
    font-size: var(--main-p-size);
    color: var(--text-color-2);
    line-height: 150%;
}

b{
    font-weight: 600;
}

blockquote {
    color: var(--text-color-2);
    font-weight: 500;
    font-size: var(--main-p-size);
    line-height: 150%;
    margin: 10px 0 20px 0;
    padding-left: 20px;
    border-left: 2px solid var(--main-color);
}