@charset "UTF-8";
/* ----------------------------------------------------------------------------- * 
 *          Responsive Webdesign - Praxisbeispiele - 3. Auflage 2017             *
 *           In atmosphere.css sind Farben und Schriften definiert,              *
 *                  die für alle Beispiele verwendet werden.                     *
 *       In der layout.css stehen ergänzende Styles für alle Layoutstufen.       *
 *    Danke an die Autoren: Andrea Ertel und Kai Laborenz (Rheinwerk Verlag      *
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- *
 *          Basisschriftgröße auf 10px setzen --> 62,5% von 16px                 *
 *    erleichtert uns die Umrechnung der weiteren Schriftgrößen in rem / em      *
 *        Beispiel: 1.0rem entspricht 10px und 1.6rem entspricht 16px            *
 *    68,75% ---> 11px | 75% ---> 12px                                           *
 * ----------------------------------------------------------------------------- */

html {
   font-size: 62.5%; /* war 62,5%  */
}

body {
   font-size: 1.6px; /* (war 1.6)Fallback für alte Browser, die rem nicht kennen */
   font-size: 1.6rem; /* (war 1.6) 16px */
   line-height: 1.5; /* 24px */
   font-family: 'Roboto', sans-serif; /* Google Webfont */
   font-weight: 300;
   color: #444; /* dunkelgrau */
   background-color: #efefef; /* hellgrau */
}

.page-wrapper {
   background-color: #0a6436; /* blau-gruen #189ca4 */
}

.header {
   background-color: #a63c36; /* rot #da0545 */
}

.main-wrapper {
   background-color: #fff; /* weiss */
   padding: 2em 2rem;
}

.footer {
   background-color: #ddd; /* schwarz */
   color: #000; /* weiss */
}

h1, h2, h3 {
   font-family: 'Raleway', sans-serif; /* Google Webfont */
   font-weight: 500;
   line-height: 130%;
   color: #a63c36; /* rot */
}

.main-content h1, h1 {
   font-size: 2.6rem; /* 26px */
}

.main-content h1 {
   font-weight: bold;
}

h2 {
   font-size: 2.2rem; /* 22px */
}

h3 {
   font-size: 2.0rem; /* 20px */
}

p.teasertext {
   font-size: 1.7rem; /* 17px */
   line-height: 150%;
}

a:link, a:visited {
   color: #0a6436; /* blau-gruen */
   font-weight: 600;
}

a:hover, a:focus, a:active {
   color: #fff; /* weiss */
   background-color: #0a6436; /* blau-gruen */
}

.logo {
   font-family: 'Raleway', sans-serif; /* Google Webfont */
   font-size: 2.8rem; /* 2.1 */
   font-weight: bold; /* 500 */
   line-height: 1;
   text-transform: uppercase;
   letter-spacing: 0.3em;
   color: #fff; /* weiss */
}

.logo a:link, .logo a:visited {
   color: #fff; /* weiss */
   font-weight: bold; /* 500 */
   text-decoration: none;
   display: block;
}

.logo a:hover, .logo a:focus, .logo a:active {
   background-color: #f8b255; /* orange */
}

.main-nav {
   background-color: #0a6436; /* blau-gruen */
   background-repeat:repeat-y;
}

.main-nav li {
   list-style: none;
}

.main-nav a, .main-nav strong {
   font-weight: 300;
}

.main-nav a:link, .main-nav a:visited {
   color: #fff; /* weiss */
}

.main-nav a:hover, .main-nav a:focus, .main-nav a:active {
   background-color: #96cfbf; /* mint-gruen */
   color: #fff; /* weiss */
}

.main-nav__item-act {
   color: #0a6436; /* d´gruen */
   background-color: #fff; /* weiss */
}

