html {
    background-color: black;
    
}

body {
    width: 700px; /* Website ist 700px 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*/
}

h1
{
    color: white;
    text-align: center;
    
    font-family: Arial, sans-serif;
    
    /*font-size: 3em;*/
    font-size: 3em;
	
    border-style: solid;
	
	/* border ist Rahmen, border-top-style: solid; ausprobieren */
	
    border-width: 5px;
    border-color: #FFFFFF;
    border-radius: 10px;
         
}
p {
    color: white;
    box-sizing: border-box;
    width: 300px;
	margin:	25px;
    /*  Außenabstand 25 Pixel ausprobieren */
	
	padding:	10px;
	 /*  Innenabstand 10 Pixel ausprobieren */
	
	
	
    float: left;
    /*  Zwei Absätze nebeneinander, da Absatz normal eine Blockelement ist*/
	
	border: solid 5px white;
	 /*  Kurzform von siehe weiter oben*/
	 
	 /* border-radius: 10px; ausprobieren */
    
}
