@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
    url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
    url('../fonts/Lato-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
    --font-primary: 'Lato', sans-serif;
    --color-main: #161e26;
    --color-background: #F3F4F6;
}

.background {
    background-color: var(--color-background);
}

.color-white {
    color: white;
}

.color-main {
    color: var(--color-main);
}

a:hover {
    text-decoration: underline;
    color: var(--color-main);
}

.background-main {
    background-color: var(--color-main);
}

body,h1,h2,h3,h4,span,div,p,button,a {
    font-family: var(--font-primary);
}

h1,h2,h3,h4,.font-h1,.font-h2,.font-h3 {
    font-weight: 700;
}

h1,.font-h1 {
    font-size: 28px;
}

h2, .font-h2 {

}
h3, .font-h3 {
    font-size: 18px;
}

p {
    font-size: 15px;
}

@media (min-width: 640px) {
    h1,.font-h1 {
        font-size: 32px;
    }
    h2, .font-h2 {

    }
    h3, .font-h3 {
        font-size: 18px;
    }
}
@media (min-width: 960px) {
    p {
        font-size: 16px;
    }
    h1,.font-h1 {
        font-size: 40px;
    }
    h2, .font-h2 {

    }
    h3, .font-h3 {

    }
}  /* @m */
@media (min-width: 1200px) {
    h1,.font-h1 {
        font-size: 46px;
    }
    h2, .font-h2 {
        font-size: 32px;
    }
    h3, .font-h3 {
        font-size: 24px;
    }
} /* @l */
