/*Das ist die CSS Datei*/

/*Hier wird die Größe der div Box body definiert*/
body {
    width: 1200px;
    height: 600px;
    margin: 0 auto;
    font-size: 20px;
}

/* Hier wird das Hintergrundbild eingefügt */
html {
    background-image: url(pizza_anbiss_0.png);
    
    /* Es soll fixiert sein und nicht mitscrollen */
    background-attachment: fixed;
        
}

/*Mit h1, h2 werden die verschiedenen Überschriftenarten definiert*/
h1 {
    font-size: 50px;
    text-align: center;
    line-height: 2;
    font: "arial";
    color: chocolate;
}

h2 {
    font-size: 30px;
    text-align: left;
    line-height: 2;
    color: firebrick;
}


/* Bilder werden definiert */
img{
    margin: 20px;
    text-align: center;
}

/* Der Header wird eingerichtet */
header {
    height: 100px;
    background-color: burlywood;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 1em 0em 1em;

}

/* Hier wird die Section eingerichtet */
section {
    margin: 20px 0px 20px 0px;
    height: auto;
    min-height: 600px;
    width: 1200px;

}

/* Hier wird der Content-Bereich mit dem Inhalt eingerichtet */
content {
    width: 960px;
    min-height: 560px;
    float: right;
    background-color: darkseagreen;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
 
    

}

nav {
    background-color: burlywood;
    float: left;
    width: 180px;
    min-height: 600px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    float: left;
}

/*Die Tabellen werden definiert*/
table,
th,
td {
    /*border: none;*/
    float: none;
    padding: 1em:

}
/*Das gilt nur für den Inhalt der Tabellen*/
th,
td {
    padding: 10px;
    text-align: center;

}


/* Der Footer */
footer {
    clear: both;
    height: 150px;
    background-color: burlywood;
    padding: 1em;
    margin: 1em 0em 1em;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;

}

#login{
    float: right;
}


/*Hier wird das Aussehen der Links eingestellt. */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: firebrick;
}

li a {
    display: block;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    list-style-type: none;
    
}

li{
    display: block;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    list-style-type: none;
    
}

la a {
    display: block;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    text-indent: 20px;
    list-style-type: none;
}

/* Change the link color on hover */

li a:hover {
    background-color: chocolate;
    color: white;
}
la a:hover {
    background-color: chocolate;
    color: white;
}
