/* Musikschule_ 2.html*/

h1     {
            color: red;
            background-color: yellow; 
       }
       
body    {
            background-color: silver; 
        }
            
html    {
            font-family:  Arial;
        }
        
p       {
            text-align:   left;
        }
        
h2      {
            color:   blue;   
        }
        
ul      {
            list-style-type: cicel;
        }
        
ol      {   
            list-style-type: upper-roman;
        }     
        
a       {
             text-align:   center;
        }  
       
table   {
            border-collapse:  collapse;
            width:            60%;
            margin:           auto;
            text-align:   center;
        }   

th      {
            border: solid;
            color:  yellow;
            background-color: blue;
        }
        
td      {
            border: solid;
        }  

.box    {
           border: 1px solid;
        }        
