body {
  font: 100% Arial, Helvetica, sans-serif;
  height: 100%;
  background-image: url(Bilder/homepage_hintergrund.jpg);
}

* {
  margin:0;
  padding:0;
}

#seite {
    position: relative;
    min-height: 100%;
    text-align: left;
    margin: 0 auto;
    width: 980px;
}

.rahmen {
    /*height: 340px;
    width: 511px;*/
    /*margin: 2em auto 0;*/
    border: 5px solid #eee;
    box-shadow: 1px 1px 5px 2px #777;
}

.oval {
        width: 980px;
        height: 200px;
        /* Damit es perfekt oval wird m�ssen bei border-radius
           die Werte von width und height halbiert werden!!! */
        border-radius: 490px / 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
}

#kopfbereich {
    width: 980px;
    height: 200px;
    background-color: #E6BDAB;
}

#kopfbereich p {
    position: absolute;
    top: 5px;
    left: 380px;
    color: white;
    text-align: right;
    font-size: 3em;
    padding: 10px 40px 0 0;
    text-shadow: 1px 1px 1px black;
    opacity: 0.5;
}

#steuerung{
  	font-size: 0.97em;
    padding-left: 1em;
    background-color: #ceb98e;
}

#steuerung a {
    /*background-color: lightblue;*/
    color: white;
    text-decoration: none;
    width: 100%;
    /*display: inline-block;*/
    line-height: 1.4em;

    /*  sonst Breite nicht sinnvoll handelbar  */
    /*box-sizing: border-box; */

    /*  wird erst beim Hervorheben der aktiven Zeile ben�tigt  */
    padding-left: 4px;
    padding-right: 4px;
}

#steuerung a:hover {
    text-decoration: underline;
    background: url(Beispielwebseite2/pfeil-fuer-steuerung.gif) top right no-repeat;
}

#schatten{
    background: url(Bilder/schatten.png) repeat-x;
    height: 12px;
}

#inhalt {
  float: left;
  width:980px;
  text-align: center;
  background-image: url(Bilder/hintergrind_homepage_statt_holz.jpg);
}

#inhalt h1,h2,h3 {
  padding-bottom: 0.7em;
  /*color: black;*/
  text-align: center;
  padding-top: 50px;
}

#inhalt p {
    padding-top: 10px;
    padding-bottom: 10px;
    color: black;
    text-align: center;
}

#inhalt ul {
  padding-left:2em;
}

.form_hintergrund {
    background-color: white;
    border: 2px black solid;
}

ul, li
{
    list-style: none;
}

#fragen {
    width: 800px;
    height: 450px;
    border: 1px black solid;
    background-color: white;
    margin: 10px auto;
    opacity: 0.8;
    overflow: auto;
}

#fragen p {
    color: black;
    text-align: center;
    margin-top: 10px;
}

#stapel {
    height: 340px;
    width: 511px;
    /*margin: 2em auto 0;*/
    /*border: 5px solid #eee;
    box-shadow: 1px 1px 5px 2px #777;*/
}

#stapel img {
    position: absolute;
    height: 340px;
    width: 511px;
    opacity: 0;
}

#stapel img:nth-of-type(1) {
    -webkit-animation: fade 30s ease-in-out infinite;
    animation: fade 30s ease-in-out infinite;
}

#stapel img:nth-of-type(2) {
    -webkit-animation: fade 30s 6s ease-in-out infinite;
    animation: fade 30s 6s ease-in-out infinite;
}

#stapel img:nth-of-type(3) {
    -webkit-animation: fade 30s 12s ease-in-out infinite;
    animation: fade 30s 12s ease-in-out infinite;
}

#stapel img:nth-of-type(4) {
    -webkit-animation: fade 30s 18s ease-in-out infinite;
    animation: fade 30s 18s ease-in-out infinite;
}

#stapel img:nth-of-type(5) {
    -webkit-animation: fade 30s 24s ease-in-out infinite;
    animation: fade 30s 24s ease-in-out infinite;
}

@-webkit-keyframes fade {
    6.66%, 20%          {opacity:1;}
       0%, 26.66%, 100% {opacity:0;}
}


@keyframes fade {
    6.66%, 20%          {opacity:1;}
       0%, 26.66%, 100% {opacity:0;}
}

#fussbereich {
    margin-top: 10px;
    width: 100%;
    background-color: black;
    text-align: center;
    clear: both;
    line-height: 2em;
    color: silver;
    font-size: 80%;
    height: 2em;
}

#akkordeon:not(:target) .text,
#akkordeon:not(:target) .hide,
#akkordeon:target .show {display: none;}
#akkordeon:target .text {display: block;}

.text {
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
    padding: 20px 20px 1px;
    margin: 0px 0px 10px;
}

.show,
.hide {
    background-color: #E6BDAB;
    box-shadow:none!important;
    color: black;
    font-weight:bold;
    font-size: 90%;
}
.show:hover,
.hide:hover {
    background-color: #E6BDAB;
    color:#fff!important;
    transition:0.2s all ease-in-out!important;
}