body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: #2e3744;
    text-align: center;
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    align-items: center; /* Horizontal zentrieren */
    justify-content: center; /* Vertikal zentrieren */
  }
  
  h1 {
    font-size: 40px;
    color: white;
    padding: 25px;
    text-decoration: underline;
  }
  
  h3 {
    color: white;
    padding: 5px;
    width: fit-content;
    
  }

  h4 {
    color: white;
    padding: 5px;
    width: fit-content;
    text-decoration: underline;
  }
  
  p {
    color: lightgrey;
    margin: 10px auto;
  }
  
  a {
    color: lightblue;
  }
  
  a:hover {
    text-decoration: underline;
  }

  .button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button:hover {
    background-color: #508D48;
  }
  