/*
 * Fonts
 */

/* nunito-regular - latin */
@font-face {
   font-family: 'nunito';
   font-style: normal;
   font-weight: 400;
   src: local(''),
      url('../fonts/nunito-v23-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('../fonts/nunito-v23-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}



/*
 * Allgemeine Einstellungen
 */
body {
   font-family: nunito;
   padding: 70px 0;

   overflow: hidden;
   height: 100%; 
}


/*
 * Headers
 */
h1, h2, h3, h4 {
   color: #AC2F3C;
   font-weight: bold;
}
h1 { font-size: 180%; }
h2 { font-size: 140%; }
h3 { font-size: 115%; }
h4 { font-size: 105%; }
h5 { font-size: 105%; font-weight: normal; }



/*
 * Div. Hilfsformate
 */ 
.borderwarn {
   border: 2px solid red;
   background-color: #f9fad9;
}
.boxhidden {
   display: none;   
}


