/* Include font faces */

/* prettier-ignore */
@font-face {
    font-family: 'NowAlt';
    src: url('../fonts/now_alt-bold.woff2') format('woff2'),
        /* Super Modern Browsers */ url('../fonts/now_alt-bold.woff') format('woff'),
        /* Pretty Modern Browsers */ url('../fonts/now_alt-bold.ttf') format('truetype'),
        /* Safari, Android, iOS */ url('../fonts/now_alt-bold.svg#svgFontName') format('svg'); /* Legacy iOS */
}

/* prettier-ignore */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamSSm-Medium_Web.woff2') format('woff2'),
        /* Super Modern Browsers */ url('../fonts/GothamSSm-Medium_Web.woff') format('woff');
}

/* prettier-ignore */
@font-face {
    font-family: 'GothamBold';
    src: url('../fonts/GothamSSm-Bold_Web.woff2') format('woff2'),
        /* Super Modern Browsers */ url('../fonts/GothamSSm-Bold_Web.woff') format('woff');
}

/* prettier-ignore */
@font-face {
    font-family: 'GothamLight';
    src: url('../fonts/GothamSSm-Light_Web.woff2') format('woff2'),
        /* Super Modern Browsers */ url('../fonts/GothamSSm-Light_Web.woff') format('woff');
}

/* Color palette */

:root {
    --dark-teal: #009bb0;
    --plejd-teal: #48c5d6;
    --pale-teal: #b9e9ef;
    --light-teal: #eaf9fb;
    --periwinkle: #5a55cd;
    --pale-periwinkle: #dcddff;
    --light-periwinkle: #f2f2ff;
    --almost-red: #f25764;
    --pale-red: #fad4d4;
    --light-red: #fff1f1;
    --peach: #ffc898;
    --pale-peach: #ffdfc8;
    --light-peach: #fff3eb;
    --almost-black: #151112;
    --white: #ffffff;
    --green: #50a56e;
    --pale-green: #cbe4d3;
    --almost-white: #f4f3f3;
    --grey: #797777;
    --light-green: #edf9f1;
}

/* Text styles */

html,
body {
    font-family: GothamLight;
    font-size: 18px;
    color: #151112;
    color: var(--almost-black);
}

a {
    color: #009bb0;
    color: var(--dark-teal);
    text-decoration: none;
}

p {
    margin: 0 0 10px;
}

a:hover,
a:active {
    text-decoration: underline;
}

ul {
    margin: 0 0 0 20px;
    padding: 0;
}

li {
    color: #797777;
    margin: 0;
    padding: 0;
}

li p {
    color: #151112;
    color: var(--almost-black);
}

.preamble {
    font-family: GothamLight;
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

h1 {
    font-family: NowAlt;
    font-size: 76px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 0 0 20px;
}

h2 {
    font-family: NowAlt;
    font-size: 47px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 30px 0 10px;
}

h3 {
    font-family: NowAlt;
    font-size: 29px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 30px 0 10px;
}

h4 {
    font-family: NowAlt;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 0 0 10px;
}

h5 {
    font-family: NowAlt;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    margin: 0 0 10px;
}

.h1-small {
    font-family: NowAlt;
    font-size: 48px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.h2-small {
    font-family: NowAlt;
    font-size: 30px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.h3-small {
    font-family: NowAlt;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.h4-small {
    font-family: NowAlt;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

p {
    font-family: GothamLight;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.paragraph-small {
    font-family: GothamLight;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
}

small {
    font-family: GothamLight;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.preamble-small {
    font-family: GothamLight;
    font-size: 22px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

@media screen and (max-width: 750px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
    }
    .preamble,
    .preamble-small {
        font-size: 22px;
    }
    p {
        font-size: 17px;
    }
}
