/*
typography.css

Basiswerte Typographie

2021 Dirk Pfuhl, www.dirkpfuhl.de

Typographie
Basis:      20px = 1em
Lineheight: 20px = 1.42857143

vertical ratio: 1.5

h1          3.375 = 48px    lineheight: 60px
h2          2.25 =  28px    lineheight: 40px
h3          1.5 =   21px    lineheight: 25px
h4          1   =   14px    Lineheight: 20px

*/

body, input, textarea {
  font-family: 'Open Sans', helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  color: #141412;
  }
.font-color-normal {
  color: #141412 !important;
  }
h1, h2 {
  /*font-family: 'Bitter', sans-serif;*/  
  }
h1 {
  font-family: 'Open Sans Condensed', helvetica, arial, sans-serif;
  /*font-family: 'Noto Sans', helvetica, arial, sans-serif;*/
  font-size: 4em;
  line-height: 1.1em;
  font-weight: 700;
  color: #3399cc;
  /*font-variant: small-caps;*/
  margin-top: 20px;
  margin-bottom: 40px;
  }
h2 {
  /*font-family: 'Noto serif', serif;*/
  font-size: 3.05em;
  line-height: 1.2em;
  color: #3399cc;
  margin-bottom: 20px;
  margin-top: 40px;
  }
h1 + h2 {
  margin-top: -20px;
  }
h3 {
  font-size: 1.6em;
  line-height: 1.656em;
  margin-bottom: 20px;
  margin-top: 60px;
  }
h2 + h3 {
  margin-top: 0px;
  }
div + h3 {
  margin-top: 0;
  }
h4 {
  font-size: 1.25em;
  line-height: 1.68em;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 0px;
  }
.color-white {
  color: #ffffff;
  }



/* Mediaqueries */  
@media only screen and (min-width : 1800px) {
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 991px) {            
  body {
    font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 3em;
    line-height: 60px;
    }
  h2 {
    font-size: 2.4em;
    }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 14px;
    }
  h1 {
    font-size: 2.4em;
    line-height: 1.2em;
    margin-top: 20px;
    margin-bottom: 40px;
    }
  h2, .page-topic h2 {
    font-size: 1.4em;
    line-height: 1.2em;
    }
}
 