/* CSS Document */

h1          { 

                color:    red;
                background-color:   yellow;

            }
            
body        {
            background-color:   silver;
            }

html        {
            font-family:    Arial;
            }
            
p           {
            text-align: center;
            }

h2          {
            color:  blue;
            }

ul          {
            list-style-type: disc;
            }

ol          {
            list-style-type: lower-alpha;
            }
            
h3          {
            text-align:    left;
            font-family:    Arial;
            }

td          {
            border: solid;
            text-align:left;
            }
th          {
            border: solid;
            background-color: blue;
            color:  yellow;
            }
table       {
            border-collapse:    collapse;
            width:  60%;
            margin: auto;
            }
            
.box        {
            border: 1px solid;
            width:  200px;
            text-align: left;
            background: yellow;
            }
            
#gerade     {
             background-color: cyan;
            }
            
#ungerade   {
            background-color:   white:
            }
tr:hover    {
            background-color:   red;
            color:  white;
            }
                 
            
#v          {
            background-color: red;
            color:  yellow;
            }