html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff; /* updated to white */
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  font-size: large;
  /* Optional styling */
}
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  scale: 1.0; /* Adjust scale to fit the screen */
  filter: blur(5px) brightness(0.7) contrast(1.2); /* Optional: blur the background video */
  opacity: 0.8; /* Optional: add opacity */
}

/* Container for the top buttons - centers them at the top */
#top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 10px 0 12px 0;
  z-index: 2000;
  background: transparent;
  pointer-events: none;
}

#top-nav .top-button {
  pointer-events: auto;
  background: transparent;
  color: #292929;
  border: none;
  padding: 10px 20px;
  font-size: 1.5em;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: normal;
  box-sizing: border-box;
  border-radius: 0;
  transition: color 0.2s, text-decoration 0.2s;
  outline: none;
  line-height: 1.2;
}
#top-nav .top-button:hover {
  color: #5e5e5e;
}

.subtitle {
  font-family: Arial, sans-serif;
  /* Using viewport units, or adjust with clamp(min, preferred, max) */
  font-size: clamp(1.5em, 2vw, 2em);
  margin-bottom: 10px;
  opacity: 0.8;
}
.title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(3em, 6vw, 6em);
  margin: 0;
}
.description {
  font-family: Arial, sans-serif;
  font-size: clamp(0.9em, 1.2vw, 1.2em);
  margin-top: 10px;
  line-height: 1.4em;
  white-space: pre-line;
}
.extra-small {
  font-size: clamp(0.7em, 0.8vw, 0.8em);
  margin-top: 5px;
}

.impressum-link {
  position: fixed;
  bottom: 12px;
  right: 16px;
  z-index: 1000;
  font-size: 0.8em;
  padding: 3px 6px;
  color: #ffffff;
  border-radius: 6px;
  opacity: 0.85;
  background: none;
  transition: color 0.2s, text-shadow 0.2s, opacity 0.2s;
  text-decoration: none; /* Remove underline */
}

.impressum-link:hover {
  color: #5e5e5e;
  text-shadow: 0 2px 8px #1976d255;
  opacity: 1;
}
