/*==================================================================*/
/*                                                                  */
/*  Autor: Matthias Lawnik                                          */
/*                                                                  */
/*==================================================================*/

/*==================================================================*/
/*                                                                  */
/*  Regel fuer Allgemeine Darstellung                               */
/*                                                                  */
/*==================================================================*/
*{
margin: 0;     /*Dies ist der Abstand vom Rahmen eines Element zu nächsten Rahmen eines Element*/
padding: 0;    /*Dies ist der Abstand vom Inhalt zum Rahmen*/
font-size: 10px;
}

body {
background-color: #FFFFFF;
}

/*==================================================================*/
/*                                                                  */
/*  Regel fuer den Hintergrund                                      */
/*  Hintergrund scrollt nicht mit Inhalt mit                        */
/*                                                                  */
/*==================================================================*/

#hintergrund{
position: absolute;
top: 0;
left: 0 ;
width: 100%;
height: 100%;
z-index: -1;
}

/*==================================================================*/
/*                                                                  */
/*  Seitengestaltung                                                */
/*                                                                  */
/*==================================================================*/

#content{
margin: 1em auto;
padding-bottom: 1em;
border: 1px solid;
border-color: #000000;
background-color: #efefef;
width:1000px;
height: auto;
text-align: center;
font-size: 1.5em;
box-shadow: 0 4px 10px -2px #000000;     /*Befehl um eine Schattenbildung um die DIV Box zu erzeugen. !!ACHTUNG!! funktioniert nicht mit jedem Browser*/
}

h1{
    font-size: 4em;
} 

#content a{
    font-size: 1em;
} 