/* Eigene Schriftart einbinden */
@font-face {
  font-family: "Corre";
  src: url("corre.ttf") format("truetype");
}

/* Global für alle Seiten */
body {
  font-family: "Corre", Georgia, serif;
  text-align: center;
  margin: 40px;
}

/* Übersicht-Link oben links */
.back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1em;
}

h1 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
}

img {
  max-width: 700px;
  height: auto;
  margin-bottom: 20px;
}

h2 {
  margin-top: 30px;
}

a {
  text-decoration: none;
  color: black; /* Links schwarz */
}

a:hover {
  text-decoration: underline;
}
