*{
    font-family: "Verdana";

    margin: auto;
    padding: 0px;
}

body {
    width: 100%;
    margin: auto;
    
    display: -moz-box;
    display: -ms-box;
    font-family: Arial;
    -moz-box-align: center;
    -moz-box-pack: center;
    -ms-box-align: middle;
    -ms-box-pack: center;
    
}

#wrapper {
    width: 650px;
    margin: auto;
    -moz-box-align: center;
    -moz-box-orient: vertical;
    -ms-box-align: middle;
    -ms-box-orient: vertical;

}

header {
    font-family: "Verdana";
    text-align: center;
    padding: 5px;
    width: 100%;
    display: block;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    /* box-shadow: 10px 10px 5px #888888; */
    /* border-radius: 5px 5px 0px 0px; */
    

}

#main_text {
    padding: 5px 10px 5px 20px;
    background-color:rgba(255,255,255, 0.9);
    border-radius: 10px 10px 10px 10px;

    
}


#mainheader {
    text-shadow: 2px 2px 0px grey;
    /*animation-name: mainheader_anim;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    transition-timing-function: linear;*/
}

@keyframes mainheader_anim {
    0%   {text-shadow: 0px 0px 0px yellow}
    20%  {text-shadow: -20px -10px 30px orange}
    40%  {text-shadow: 0px -20px 30px orange;}
    60%  {text-shadow: 0px -40px 30px orange;}
    100%  {text-shadow: 0px -40px 50px orange;}
}

#subheader {
    text-shadow: 2px 2px 0px grey;
    /*animation-name: subheader_anim;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    transition-timing-function: ease;*/
}

@keyframes subheader_anim {
    0%   {text-shadow: 0px 0px 20px orange}
    20%  {text-shadow: -20px -20px 30px orange}
    40%  {text-shadow: 40px -40px 30px orange;}
    60%  {text-shadow: 0px -80px 30px orange;}
    100%  {text-shadow: 0px -80px 50px orange;}
}


#main_menu{
    background-color:rgba(255,255,255, 0.9);
    padding: 0px 15px;
    width: 100%;
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 10px 10px 5px #888888;
    border-radius: 5px 5px 5px 5px;

  
        
}

#main_menu li {
    display: inline-block;
    list-style: none;
    padding: 5px;
    font: 18px "verdana", sans-serif;
}

#sagen_menu{
    background: #c5c5c5;
    padding: 0px 15px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;

  
        
}

#sagen_menu li {
    display: inline-block;
    list-style: none;
    padding: 5px 15px;
    font: 16px "verdana", sans-serif;
}

#main_footer{
    
    padding: 5px 10px 5px 20px;
    margin-top: 10px;
    background-color:rgba(255,255,255, 0.9);
    border-radius: 10px 10px 10px 10px;

    font: 14px "verdana", sans-serif;
        
}

/* a:link, a:visited{
    color: black;
} */

.main_box {
    display: block;
    padding: 5px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    
    color: #000;
    -moz-transition: -moz-transform 0.6s ease-in-out 0s;
    -ms-transition: -ms-transform 0.6s ease-in-out 0s;


}



.main_box:hover{
    -moz-transform: rotate(-5deg) scale(2.5);
    -ms-transform: rotate(-5deg) scale(2.5);
}

