/* Vars */
:root {
    --default-font-family: 'Roboto Regular';
    --strong-font-family: 'Roboto Bold';
    --light-font-family: 'Roboto Light';

    --default-font-size: 16px;
    --default-line-height: 19px;

    --small-font-size: 12px;
    --small-line-height: 14px;

    --title-font-size: 24px;
    --title-line-height: 27px;

    --default-spacing: 10px;
    
    --main-color: #000;
    
    --header-height: 95px;
}
@media only screen and (min-width: 768px) {
    :root {
        --default-spacing: 15px;

        --title-font-size: 28px;
        --title-line-height: 32px;
        
        --header-height: 60px;
    }
}
@media only screen and (min-width: 1024px) {
    :root {
        --default-spacing: 20px;
        --header-height: 70px;
    }
}
img {
    display: block;
}
legend,
label,
textarea,
body,
a,
h1, h2, h3, h4, h5, h6 {
    color: var(--main-color);
    font-family: var(--default-font-family);
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
    letter-spacing: 0.5px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--strong-font-family);
    text-transform: uppercase;
}
.logo,
.logo a {
    font-family: var(--strong-font-family);
}
.text {
    max-width: 700px;
}
.text strong {
    font-family: var(--strong-font-family);
}
.sticky {
    position: sticky;
    top: 0;
}
strong {
    font-family: var(--strong-font-family);
}