@font-face {
  font-family: 'Exo2';
  src: url('fonts/Exo2-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Exo2';
  src: url('fonts/Exo2-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

* {
  font-family: 'Exo2', sans-serif;;
}


.impressum-content {
    max-width: 800px;
    margin: 50px auto; 
    padding: 20px 50px;
    background-color: #ffffff; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px; 
    color: #003366; 
  }

  .impressum-content ul {
    margin-left: 0; /* Entfernt die Standard-Einrückung */
    list-style-position: inside; /* Bulletpoints innerhalb des Containers */
  }
  
  .impressum-content li {
    margin-left: 0; /* Entfernt jegliche zusätzliche Einrückung */
    padding-left: 0; /* Sorgt dafür, dass der Text bündig ist */
  }
  

  .impressum-content h1 {
    font-size: 2em;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
  }

  .impressum-content h2 {
    margin-bottom: 20px;
  }


  
  
  .impressum-content p, ul {
    font-size: 1em;
    line-height: 1.6; 
    margin-bottom: 25px;
  }
  
  
  .impressum-content strong {
    font-weight: bold;
    color: #003366;
    margin-top: 15px;
  }
  
  
  .impressum-content a {
    text-decoration: none;
    font-weight: bold;
  }
  
  .impressum-content a:hover {
    text-decoration: underline;
  }
  
  
  .impressum-content p:not(:last-child) {
    margin-bottom: 20px;
  }
  
  
  @media (max-width: 768px) {
    .impressum-content {
      padding: 15px;
      margin: 20px;
    }
  
    .impressum-content h1 {
      font-size: 1.8em;
    }
  
    .impressum-content p {
      font-size: 0.95em;
    }
  }
  