// _typography.scss

html {
    font-size: 62.5%;
}

body {
    font-size: 1.2rem;
}

//Headings
h1, h2, h3, h4, h5, h6 {
    color: $headings-color;
    font-weight: $headings-font-weight;
    margin-bottom: 0;
}

h1 {
    font-size: $font-size-h1;
    line-height: 38px;
    margin-top: 9px;
}

h2 {
    font-size: $font-size-h2;
    line-height: 32px;
    margin-top: 11px;
}

h3 {
    font-size: $font-size-h3;
    font-weight: $font-weight-bold;
    line-height: 24px;
    margin-top: 14px;
}

h4 {
    font-size: $font-size-h4;
    font-weight: $font-weight-bold;
    line-height: 22px;
    margin-top: 17px;
}

h5 {
    font-size: $font-size-h5;
    line-height: 1.5;
    margin-top: 24px;
}

h6 {
    font-size: $font-size-h6;
    line-height: 1.75;
    margin-top: 28px;
}

//Links
a {
    color: $link-color;
    text-decoration: none;
}

//Paragraph
p {
    line-height: 1.5;
}

b,
strong {
    font-weight: $font-weight-bold;
}

