ul{
  text-align: center;
  color: #EBFFFF;
  background-color: #104760;
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.horizontal{
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  flex-wrap: wrap;
  gap: 0px 25px;
  margin: 15px 0px 50px 0px;
  padding: 5px;
  
}

li{
  padding: 0;
}


body{
    margin: 0 8px;
    background-color: #082735;
    color: #EBFFFF;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    
}

  h2 {
    text-align: center;
      font-family: "Sixtyfour", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;    
}  

a {
    color: inherit;       /* übernimmt die umgebende Textfarbe */
    text-decoration: none; /* entfernt Unterstreichung */
    font-size: 1rem;
}

a.aktiv {

  font-weight: bold;
}

a:hover {
    font-weight: bold;
    text-decoration: none;
  }

  .horizontal a{
  /* display: inline-block; */
  position: relative;
}

.horizontal a::after{
  content: attr(data-label);
  font-weight: bold;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: block;
}


  .kontakt-feld {
        max-width: 500px;
        margin: 50px auto;
        background: #082735;
        padding: 20px 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    h2 {
        margin-bottom: 100px;

    }

    h3 {
        /* text-align: center; */
        margin-bottom: 20px;
        color: #EBFFFF;
        letter-spacing: 2px;
        
    }

    /* Eingabefelder */
    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #EBFFFF;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        font-family: inherit;
        letter-spacing: 1px;
        box-sizing: border-box;
    }

    input:focus, textarea:focus {
        border-color: #2d4982;
        outline: none;
        
    }

    textarea {
        resize: vertical;
        min-height: 100px;
    }

    /* Button */
    button {
        background-color: #104760;
        color: #EBFFFF;
        padding: 6px 15px;
        border-width: 2px; 
        border-color: #EBFFFF;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        width: 100%;
        display: block;
        margin: 20px auto;
        font-family: inherit;
        font-weight: bold;
    }

    button:hover {
        background-color: #2d4982;
    }

 

@media (max-width: 600px) {
            ul, li {
                flex-direction: column; /* Navigation untereinander */
                align-items: center;
            }

            /* ul, li a {
                padding: 0.8rem;
                width: 100%;
                text-align: center;
                border-bottom: 1px;
            } */

            header {
                font-size: 1rem;
            }

             li {
              padding: 0;
            }

            .horizontal li a {
              font-size: 0.9rem;     /* kleinere Schrift */
              padding: 0.4rem 0.6rem;
              display: inline-block;
            }

            .horizontal {
              /* display: flex;
              justify-content: center;
              align-items: center; */
              flex-wrap: wrap;
              gap: 8px;
              /* margin: 10px 0 30px 0; */

            }
        }
       
