@font-face {
    font-family: 'Hochstadt Rounded';
    src: url("../fonts/hochstadt_rounded.otf") format('opentype');
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/montserrat-regular.woff") format("woff");
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url("../fonts/montserrat-bold.woff") format("woff");
}

@font-face {
    font-family: 'Montserrat Light';
    src: url("../fonts/montserrat-light.woff") format("woff");
}

:root {
    /* Colors */
    --primary-color: #4a544a;
    --primary-bg-color: #ffffff;
    --secondary-color: #ffffff;
    --secondary-bg-color: #b8976a;

    /* Font settings */
    --text-font: 'Montserrat', 'Trebuchet MS', sans-serif;
    --text-font-size: 18px;
    --text-line-height: calc(var(--text-font-size) + 8px);

    --title-font: 'Hochstadt Rounded', 'Roboto', sans-serif;
    --h1-font-size: 64px;
    --h1-line-height: calc(var(--h1-font-size) + 8px);
    --h2-font-size: 40px;
    --h2-line-height: calc(var(--h2-font-size) + 8px);
    --h3-font-size: 24px;
    --h3-line-height: calc(var(--h3-font-size) + 8px);

     /* Images */
    --image-border-radius: 32px;

    /* Breakpoints */
    --breakpoint-sm-down: 600px;

    /* Specials */
    --contactpage-triangle-height: 80px;
}

@media screen and (max-width: 600px) {
    :root {
        --h1-font-size: 48px;
        --h2-font-size: 32px;

        --contactpage-triangle-height: 24px;
    }
}