html, body {
  margin: 0;
  padding: 0;
  height: 100%; 
  width: 100vw;
  background: #fff;
  box-sizing: border-box;
}

body {
  font-family: 'Abhaya Libre', serif;
  color: #000;
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  box-sizing: border-box;
}

.centerbox {
  flex: 1 0 auto; /* Macht die Mitte flexibel und füllt den Platz aus */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Zentriert alles vertikal im verfügbaren Raum */
}

.vyra-logo h1 {
  
 
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 12rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.2em 0;
  line-height: 1;
  text-align: center;
}

.model-management {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 4000;
  font-size: clamp(0.8rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0 0 1.4em 0;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
}

.divider {
  width: 4em;
  max-width: 18vw;
  height: 1.5px;
  background: #000;
  margin: 1em auto;
  display: block;
}

.coming-soon {
  font-size: clamp(0.8rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  opacity: 0.73;
  margin-bottom: 0;
  text-align: center;
}

footer {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 0.25em;
  margin-top: 2rem;
  box-sizing: border-box;
}

footer a {
  color: #dadada;
  text-decoration: none;
  margin: 0 0.75rem;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 0.6;
}

@media (max-width: 400px) {
  .vyra-logo h1 {
    font-size: 2.2rem;
  }

  .model-management {
    font-size: 1.1rem;
  }
}
