.kontakt {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

/* Kontaktformular*/
.formular{
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.15);
    color: white;
    font-family: Montserrat;
  }
  
  /* Formular Name und Email */
  .formular-oben {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 24px;
  }
  
  .feld {
    flex: 1;
  }
 
  /* Eingabefeld Deine Nachricht*/
  .formular-feld {
    width: 100%;
    padding: 14px 19px;
    background-color: #1c1c1c;
    color: white;
    border: 1px solid #333;
    border-radius: 16px;
    font-size: 16px;
    transition: border 0.3s;
    font-family: Montserrat;
    resize: none;
  }
  
  .formular-feld::placeholder {
    color: #aaa;
  }
  
  .formular-feld:focus {
    border-color: #005ecb;
    outline: none;
  }
  
  /* Button Abschicken*/
  .button {
    display: block;
    width: 107%;
    padding: 16px;
    font-size: 17px;
    border: none;
    border-radius: 16px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 19px;
  }
  
  .button:hover {
    background-color: #0c4484;
  }
  /* Karte */
  .map-container {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.2);
  }
  