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

    --default-font-size: 13px;
    --default-line-height: 15px;

    --introductory-font-size: 20px;
    --introductory-line-height: 23px;
    
    --default-spacing: 10px;

    --main-color: #000;
    --grey: rgba(225, 225, 225, 0.5);

    --header-height: 35px;
}
@media only screen and (min-width: 768px) {
    :root {
        --introductory-font-size: 30px;
        --introductory-line-height: 40px;
    }
}
@media only screen and (min-width: 1024px) {
    :root {
    }
}
h1,h2,h3,h4,h5,h6,
legend,
label,
textarea,
body,
a {
    color: var(--main-color);
    font-family: var(--default-font-family);
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
}
img {
    display: block;
}
.text {
    display: block;
    max-width: 700px;
}
.text strong {
    font-family: var(--strong-font-family);
}
.introductory {
    font-size: var(--introductory-font-size);
    line-height: var(--introductory-line-height);
}
