/* ALLGEMEIN */

*{
    font-family: Helvetica;
}

/* GESAMTE SEITE */

body {
    width: 960px; /* Website ist 960 px breit */
    
    /* Website wird teilweise responsive  */
    max-width: 90%; /* Website soll nie kleiner als 90% der gesamtseite sein */
    
    /* Website soll nie kleiner als 90% der gesamtseite sein */
    
    margin: 0 auto; /* Außenabstand 0 oben/unten und auto rechts/links (heißt mitte)
                        bringt unsere Seite in die Mitte*/
}

/* NAVIGATION */

nav {
    margin-top: 30px;
    text-align: center;
}

a {
    padding-left: 30px;
    /* Abstand der Links nach links auf 30px erhöhen - ausprobieren */
    color: black;
    font-weight: 900;
    text-decoration: none;
}

a:hover {
    color: #FF0055;
}
a:visited {
    color: #339E9D;
}

/* BILDER TEXT */

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 80px;
    padding-left: 10px;
    
    border-left: solid black 5px; 
}

h1 {
    text-align: center;
    font-size: 3.5em;
    padding: 15px;
    
    border: solid black 5px;
}

h2 {
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 2.5em;
    
    text-decoration: underline;
}