    
    body {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        position: relative;
        overflow-x: hidden;
      }
  
      .hintergrund {
        height: 100vh;
        width: 100%;
        background-size: contain; /* Hintergrundbild wird innerhalb des Containers vollständig sichtbar sein */
        background-repeat: no-repeat; /* Verhindert das Wiederholen des Hintergrundbilds */
        background-position: center; /* Zentriert das Hintergrundbild */
      }
    
      .Logo{
        position: absolute;
        height: 12vh;
        width: 12vw;
        bottom: 6vh;
        right: 1vw;
        object-fit: cover;
        z-index: 5;
      }

      .rechtliches{
        position: absolute;
        height: 3.5vh;
        width: auto;
        bottom: 5vh;
        right: 3vw;
        z-index: 1000;
        cursor: pointer;
      
      }

      .überschriftgestylt{
        text-decoration: underline;
        position: absolute;
        top: 1vh;
        text-align: center;
        color: #df7015;
        font-size: 3vw;
        font-weight: 600;
        text-shadow: 0 0 5px black;
      background-color: #0c0808;
      }
  
      .unsupported-message {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-size: 24px;
        text-align: center;
        padding-top: 20%;
        z-index: 9999;
      }
  
  
      @media screen and (orientation: portrait) {
        .unsupported-message.landscape-mode {
          display: block;
        }
      }


      .modal {
        display: none; 
        position: fixed; 
        z-index: 100; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgb(0,0,0); 
        background-color: rgba(0,0,0,0.4); 
        padding-top: 60px; 
    }

    .modal-content {
        background-color:  rgb(241, 165, 103);
        margin: 5% auto; 
        padding: 20px;
        border: 0.7vw solid  rgb(255, 115, 0);
        width: 60%; 
        height: 40%;
        text-align: center;
        font-size: 2vw;
    }

    .close {
        color: black;
        float: right;
        font-size: 4vw;
        font-weight: bold;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    #pin-input {
        font-size: 1.5vw;
        margin-top: 1vh;
        text-align: center;
    }

    #pin-submit {
        font-size: 1.5vw;
        margin-top: 1vh;
        background-color:  rgb(255, 115, 0);
        color: black;
    }

    .buttongestylt{
      position: absolute;
      height: 7vh;
      width: 7vw;
      bottom: 2vh;
      left: 2vw;
      font-size: 1.5vw;
      background-color: #df7015;
      border: 0.3vw dotted white;
      color: black;
      padding: 1vh 1vw;
      margin: 1vh;
      text-align: center;
      cursor: pointer;
    }

    .schnelli{
      font-size: 1.5vw;
        background-color: #df7015;
        border: 0.3vw dotted black;
        color: black;
        padding: 1vh 1vw;
        margin: 1vh;
        text-align: center;
        cursor: pointer;
      
    }