body{text-align: center;
background-image: url("../aufgabe_01/img/Hintergund.jpg");
background-size: contain;}


h1 {color: green; font-family: monospace;}
p{  font-family: monospace;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;}
img {display: block;
margin-left: auto;
margin-right: auto;}

li em {
  color: rebeccapurple;
}
h1 + p {
  font-size: 200%;
}
a:link {
  color: pink;
}

a:visited {
  color: green;
}
a:hover {
  text-decoration: none;
}
/* selects any <span> that is inside a <p>, which is inside an <article>  */
article p span { ... }

/* selects any <p> that comes directly after a <ul>, which comes directly after an <h1>  */
h1 + ul + p { ... }
.box {
  width: 350px;
  height: 150px;
  margin: 10px;
  padding: 25px;
  border: 5px solid black;
}
/*standard CSS Box */
