/* Das Grundgerüst für die Seite */
html, body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Hauptinhalt füllt den freien Platz */
main {
  flex: 1;
}

/* Der Footer wird formatiert */
footer {
  background-color: #0e1821;
  color: white;
  text-align: center;
  padding: 15px 0;
}

a, a:link, a:visited, a:hover, a:active {
    color: white;
}
