@charset "utf-8";
/* stylish.css */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* Setzen aller Abstaende auf 0 */
    padding: 0;
    margin: 0;
}

.body01 {
    height: 100%;
    margin-top: 10px;
    background: -webkit-linear-gradient(#043348, #bed8f2);
    background: -o-linear-gradient(#043348, #bed8f2);
    background: linear-gradient(#043348, #bed8f2);                
    background-repeat: no-repeat;
    background-attachment: fixed;    
  }

.body02 {
    background-color: black;  
}

.container01 {
    width: 500px;
    padding: 10px;                
    margin: auto;
    margin-top: 10px;
    background: -webkit-linear-gradient(#efefef, #ccc);
    background: -o-linear-gradient(#efefef, #ccc);
    background: linear-gradient(#efefef, #ccc);                
    border-color: black;
    border-style: solid;
    border-width: 5px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px black;
    text-align: center;              
}            
 
.container02 {
    width: 500px;
    padding: 10px;
    margin: auto;
    margin-top: 10px;
    background: -webkit-linear-gradient(#efefef, #ccc);
    background: -o-linear-gradient(#efefef, #ccc);
    background: linear-gradient(#efefef, #ccc);                
    border-color: azure;
    border-style: solid;
    border-width: 5px;
    border-radius: 10px;
    text-align: center;                
}

h1, h2, p {
    padding: 5px;
}