body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: #333 url("bewertungen-bilder/hintergrund.jpg") center center / cover no-repeat; 
  position: relative;
  font-family: "bahnschrift", sans-serif;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; 
  padding: 1rem;
  max-width: 90%;
}

.logo {
  width: 120px;
  height: auto;
}

h1 {
  font-size: 1.5rem;
  max-width: 600px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem; 
}

.btn {
  border: 2px solid #00a59e; 
  background: transparent;
  color: white;
  font-weight: bold;
  padding: 0.8rem 2rem;
  text-decoration: none;
  text-transform: uppercase; 
  font-family: "bahnschrift", sans-serif;
  font-variation-settings: "wght" 700; 
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: rgba(0, 165, 158, 0.1); 
  transform: scale(1.05);
}


.socials {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 1.5rem; 
  margin-top: 2rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  text-decoration: none;
}

.socials a .icon {
  width: 30px; 
  height: 30px;
  color: #ae9156
  transition: transform 0.2s;
}

.socials a:hover .icon {
  transform: scale(1.2); 
}


@media (max-width: 600px) {
  h1 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
  }

  .logo {
    width: 90px;
  }

  .socials a .icon {
    width: 30px;
    height: 30px;
  }
}



