@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap');

body{
    font-family: 'Fredoka', sans-serif;
    width:80%;
    text-align: center;
    font-size: 20px; 
    margin:auto;
    background-color: rgba(170, 170, 216, 0.473);

}

h1{ 
    text-decoration: underline; /*Überschrift unterstreichen*/
    color: rgb(167, 95, 53);  /*Farbe der Überschrift*/
}

.print{
    margin-top: 60px;
    border-bottom: 2px solid black;
}
img{ /*für Bilder */
    width: 70%;
    height: auto;
}
a:hover{ /*für vor- und Zurück-Button, wenn man drüber geht */
    color: grey;
    text-decoration: none;
    font-size: 22px;
}
a{ /*für vor- und Zurück-Button*/
    text-decoration:none;
    color: black;
    padding-top: 5px;
    padding-bottom: 10px;
}
.back{ /*Position für Zurück-Button*/
    float: left;

}
.forward{ /*Position für Vor-Button*/
    float: right;
}