@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-regular.woff2') format('woff2'),
       url('../fonts/roboto-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* === Grundlayout === */

body {
  margin: 0;
  padding: 0;
  background-image: url('../images/bg.webp'); /* ggf. anpassen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: white;
}

H1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3em;
  font-weight: bold;
  color: #ccc;
}

/* Overlay für bessere Lesbarkeit */
.overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  box-sizing: border-box;
}

/* Zentrierter Inhalt */
.centered-content {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.centered-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3em;
  margin: 0.2em 0;
}

.centered-content p {
  font-size: 1.2em;
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #ccc;
}