/* styles.css */
/* CSS-Regeln für Alle Bildschirme */

html {
  font-family:      arial, sans-serif;
  width:            auto;
  display:          flex;
  justify-content:  center;
  align-items:      center;
  height:           100vh;
  background-color: #00F5FF;
}

body {
  font-size: 16px;
}

/* Media Query für Tablets */
@media screen and (max-width: 768px) {
  /* CSS-Regeln für Tablets */
  body {
    font-size: 14px;
  }
  /* Weitere CSS-Regeln für Tablets */
}

/* Media Query für Smartphones */
@media screen and (max-width: 480px) {
  /* CSS-Regeln für Smartphones */
  body {
    font-size: 12px;
  }
  /* Weitere CSS-Regeln für Smartphones */
}

