/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 2rem;
  padding-bottom: 15vh;
  background: #ffffff;
  color: #ffffff;
  min-height: 100vh;   /* Fallback für ältere Browser */
  min-height: 100dvh;  /* moderne mobile Viewport-Einheit */
  display: flex;
  justify-content: center;
  align-items: end;
  background: url('./hinterland.jpg') no-repeat center center fixed;
  background-size: cover;
}

.container {
  max-width: 340px;
  width: 100%;
  text-align: left;
}

h1 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

h2 {
  margin-top: 0;
  font-weight: 400;
  font-size: 1.1rem;
  color: #ffffff;
}

p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

a {
  color: #F700FF;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    padding: 1rem;
    padding-bottom: 30px; /* Geändert von 15vh zu 30px */
    align-items: end;
    justify-content: center;
  }
  
  .container {
    text-align: center;
    max-width: 300px;
  }
}