/* Schrift einbinden */
@font-face {
  font-family: 'SofiaSans';
  src: url('font/SofiaSansCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Grundlayout */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'SofiaSans', Arial, sans-serif;
  height: 100%;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('img/hintergrund.jpg') center/cover no-repeat;
}

.content {
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

h1 {
  margin-bottom: 1.5rem;
  font-family: 'SofiaSans', sans-serif;
  text-transform: uppercase; /* Überschrift in Versalien */
  font-weight: 700;
}

.buttons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}

button {
  font-family: 'SofiaSans', sans-serif; /* gleiche Schriftart */
  text-transform: none; /* nicht in Versalien */
  background-color: #1e6fa8; /* Bläulich wie das Wasser */
  border: none;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #145580;
  transform: scale(1.05);
}

#message {
  margin-top: 1rem;
  color: #ffcc00;
  font-weight: bold;
  font-family: 'SofiaSans', sans-serif;
}

.hidden {
  display: none;
}
