/* Neue CSS Dateien sollten an dieser Stelle eingebunden werden. */


/* Um die Maximale Breite der Website anzupassen, kann der Wert max-width einfach verändert werden. */
.container{
    max-width: 1800px;
}

*{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    min-width: 320px;
    font-size: 16px;
    line-height: 1.6em;
    color: #212221;
    overflow-x: hidden;
    font-family: 'LinotypeUniversW01-Regu','Helvetica','Arial';
}

img{
    max-width: 100%;
    height: auto;
    width: auto;
}

a{
    color: black;
}

a:hover{
    color: #ccc;
}
svg{
    display: inline-block;
}

.site-section{
    overflow: hidden;
}


@media all and (max-width: 767.98px){
    body{
        font-size: 16px;
    }
}

@media all and (max-width: 575.98px){
    body{
        font-size: 13px;
    }
}

