/* ----------------------------------------------------------------------------- *
 *                      AtmosphÃ¤re: Farben und Schriften                         *
 *          Alle weiteren Styles stecken in der jeweiligen layout.css            *
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- *
 * Verwendete Farben
 * #005765  -  blau
 * #FF8827  -  orange
 * #0098B2  -  hellblau
 * #FFAE6F  -  pfirsich
 * #B25305  -  braun
 * ----------------------------------------------------------------------------- */

html    {
    font-size: 100%;
}

body {
    background-color: #FFAE6F;
    color: #005765; /* blau */
    font-family: 'Averia Serif Libre', cursive;
    font-size: 1em; /* 16px */
    line-height: 1.5em; /* 24px */
}

.page-wrapper {
   background-color: #FF8827  ; /* orange */
}

header {
    background-color: #B25305; /* braun */
    color: #0098B2;  /*hellblau */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5) inset;
}

.main {
    background-color: #0098B2; /*hellblau */
    color: #FFFFFF; /* weiß */
}

.mainContent {
    color: #FFFFFF;  /* weiß */
}

aside {
    color: #FFFFFF;  /* weiß */
    background-color: #FF8827; /* orange */
}

footer {
    background-color: #B25305; /* braun */
    color: #0098B2;  /*  hellblau  */
    text-align: right;
    border-bottom: 7px solid #0098B2;  /*hellblau */
}




/* ----------------------------------------------------------------------------- *
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */

h1, h2, h3, h4, {
    font-family: 'Overlock', cursive; /* FERTIG - Google-Font Overlock wenn verfÃ¼gbar, sonst Fallback */
    font-style: normal;
    font-weight: bold;
}

h1  {
    font-size: 2.250em; /* 36px; */
    line-height: 1.5em; /* 54px */
    color: #0098B2;  /* hellblau */
    text-align: center
}

h2  {
    font-size: 1.625em; /* 26px */
    line-height: 1.5em;
    color: #FFAE6F ; /* pfirsich */
}

h3  {
    color: #0098B2;  /* hellblau */
    font-size: 1.375em; /* 22px */
}

h4  {
    color: #FFAE6F ; /* pfirsich */
    font-size: 1.375em; /* 22px */
}



p.teasertext    {
    color: #FFFFFF; /* weiß */
    font-family: 'Averia Serif Libre', cursive;
    font-size: 1.188em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #FF8827   ; /* orange */
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #B25305; /* braun */
    text-decoration: underline;
}

.highlight{
   color: #FF8827;   /* orange */
}

/* ----------------------------------------------------------------------------- *
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */

nav {
    box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
    color: #FFFFFF; /*  weiss  */
    font-family: 'Overlock', cursive;
    font-size: 1em; /* 20px */
}

nav ul li {
    list-style: none;
}

nav a:link {
    color: #FFAE6F ; /* pfirsich */
}

nav a:hover {
    background-color: #FFAE6F ; /* pfirsich */
    color: #0098B2;  /*  hellblau  */
}

