/* CSS-Styling für das benutzerdefinierte Popup */
/* #custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    font-size: 27px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 10px;
  }
  
  @media screen and (max-width: 768px)  {
    #custom-popup {
      width: 80%;
      height: auto;
      font-size: 24px;
    } 
  }
  @media screen and (max-width: 425px)  {
    #custom-popup {
      width: 80%;
      height: auto;
      font-size: 18px;
    } 
  } */


  html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Sniglet-Regular;
  }