
  body {
    margin: 0;
    background: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  h1 {
    font-size: 42px;
    margin-bottom: 8px;
  }
  p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.8;
  }



  #enter-btn {
  background: #111;           /* dunkler Button */
  color: #EED8B7;                /* weiße Schrift */
  border: 1px solid #EED8B7;     /* dezente Kontur */
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 10px;        /* leicht abgerundet */
  cursor: pointer;
  transition: 0.25s;
  margin-top: -100px;
  display: inline-block;
  z-index: 9;
}

#enter-btn:hover {
  background: #222;
  border-color: #777;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.25); /* goldener Glow wie im Video */
}

#enter-btn:active {
  transform: translateY(0);
  box-shadow: none;
}




  .logo img
  {
    max-width: 300px;
    position: absolute;
    left: 0;
    top: -17px;
    z-index: 1;
  }



@media screen and (max-width: 500px) {

  body {
    margin: 0;
    background: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
  }


  .logo img
  {
    max-width: 200px;
    position: absolute;
    left: 0;
    top: -17px;
    z-index: 1;
  }

}



  html,body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: black;
  }

  video#bg2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    margin-top: 100px;
  }


@media screen and (max-width: 500px) {
video#bg2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    min-height: 50%;
    object-fit: cover;
    pointer-events: none;
}
}
