/* Vars */
:root {
    --default-font-family: 'NotoSerif-Regular';
    --default-font-size: 15px;
    --default-line-height: 22px;
    
    --title-font-family: 'DINEngschrift';
    --title-font-size: 90px;
    --title-line-height: normal;
    
    --max-width: 1600px;
    --default-spacing: 15px;
    --main-spacing: 30px;
    --blue: #002fa7;
    
    --header-height: 100px;
}
@media only screen and (min-width: 768px) {
    
}
@media only screen and (min-width: 1024px) {
    :root {
        --default-spacing: 25px;
        --main-spacing: 50px;
        --header-height: 170px;
    }
}
textarea,
body {
    color: black;
    font-family: var( --default-font-family), serif;
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
    -webkit-font-smoothing : antialiased;
}
a {
    color: black;
}

/* Fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: var(--default-font-size);
    font-family: var(--title-font-family);
    line-height: normal;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
}
.section_name {
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 10px;
}
.surtitle {
    font-size: 11px;
    font-family: 'DINSchrift_light';
    margin-bottom: 10px;
    text-transform: uppercase;
}
.subtitle {
    font-size: 18px;
    margin-top: 5px;
}

@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (min-width: 1280px) {
}

/* Misc */
input[type=text] {
    height: 35px;
    border-bottom: 1px solid black;
}