body.startseite {
  margin: 0;
  background: #000 url("images/hg/hg2.jpg") no-repeat left top;
  background-size: auto;        /* Originalgröße – kein Springen */
  background-attachment: fixed; /* Stabil – kein Ruckeln */
  background-color: #000;
  font-family: "Harrington", "Times New Roman", serif;
  color: #ffffa0;
  min-height: 100vh;
}


.start-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-right: 40px;
}

.start-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-menu a {
  color: #ffff00;
  text-decoration: none;
  font-size: 24px;
  border: 1px solid #ff00cc;
  padding: 8px 16px;
  background: rgba(0,0,0,0.6);
  transition: 0.2s;
}

.start-menu a:hover {
  background: #ff00cc;
  color: #000;
}

/* Handy-Version */
@media (max-width: 700px) {
  body.startseite {
    background-size: auto;
    background-position: left top;
  }
}


  .start-container {
    justify-content: center;
    padding: 20px;
  }

  .start-menu a {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
}
