/* Allgemeine Styles für Desktop und größere Bildschirme */
body {
    font-family: Arial, sans-serif;
    text-align: center;
}

header {
    background-color: #f2f2f2;
    padding: 20px;
    color: black;
}

ul {
  list-style-type: none;
}

#footer {
    font-size: 10px;
}

/* Media Query für kleinere Bildschirme (Tablets) */
@media only screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* Media Query für noch kleinere Bildschirme (Mobilgeräte) */
@media only screen and (max-width: 480px) {
  body {
    /*background-color: lightblue;*/
    font-size: 20px;
  }
  #footer {
    font-size: 10px;
}
}
