/* Normalisierungen */

ul, ol, li, dl, dt, dd {
  display: block;
  padding: 0;
  margin: 0;
}

li {
  display: list-item; 
  margin-left: 1.6em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

/* Styles für die App Seiten(n) */

body {
    font-family: sans-serif;
    font-size: 0.8em;
    background-color: antiquewhite;
}

footer {
    text-align: center;
}

a {
    text-decoration: none;
    font-weight: bolder;
    color: red;
}

h1 {
    font-size: 1.6em;
    text-align: center;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.2em;
}

.h1s { /* headline small */
    margin-top: 0;
    font-size: 0.7em;
}

.app { /* zum herunterladen und installieren einer App */
   
    font-size: 1em;
    font-weight: bolder;
    text-align: center;
}

.small {
    font-size: 0.7em;
}

.bold {
    font-weight: bold;
}

@media screen and (orientation: portrait) {

    .imgright {
        float: none;
    }
    
}

@media screen and (orientation: landscape) {

    .imgright {
        float: right;
        margin: 1em;
    }  

}

