html, body {
            width: 100%;
            height: 100%;
            margin: 0%;
            color:beige;
            font-size: large;
        }
        
        body {
          margin: 0;
          height: 100vh;
          background-image: url("bild.png");
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          font-family: Arial, sans-serif;
        }
    
        .overlay {
          background: rgba(0, 0, 0, 0.5);
          height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 3rem;
          font-weight: bold;
        }
        

/* Menüleiste */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
    }

    /* Obere graue Leiste */
    .navbar {
      width: 100%;
      height: 60px;
      background-color: grey;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-right: 20px;
      box-sizing: border-box;
    }

    /* Dropdown menü */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    /* Button */
    .dropbtn {
      background-color: #555;
      color: white;
      padding: 10px 15px;
      font-size: 18px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    .dropbtn:hover {
      background-color: #444;
    }

    /* Menü Inhalt */
    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: white;
      min-width: 180px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
      border-radius: 5px;
      overflow: hidden;
    }

    .dropdown-content a {
      color: black;
      padding: 12px 15px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    /* Menü anzeigen */
    .show {
      display: block;
    }

body{
    margin:0;
    font-family: Arial, sans-serif;
}

.welcome{
    padding:60px 20px;
    text-align:center;
    background-color: #222;
}

.welcome h1{
    font-size:40px;
    margin-bottom:20px;
}

.welcome p{
    font-size:18px;
    max-width:700px;
    margin:15px auto;
    line-height:1.6;
}

.impressum{
    background:#222;
    color:white;
    text-align:center;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
}
