body { 
    font-family: 'Open Sans', sans-serif; 
    background-color: #fe0000;
    padding-left: 100px;
    padding-right: 100px;
}

.header-image { /* bild auf Index*/
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: 80% 20%;
    
}


.logo { /* logo ausrichtung*/
    position: fixed;
    justify-content: left;
    top: 10px;
    left: 10px;
    width: 250px;
    height: 100px;
    cursor: pointer;
}


.image-container{
    background-color: white;
    padding:16px;
}

.navbar{
   display: flex; 
   justify-content: space-between;
    align-items: center;
}

a{
    color: #fee100;
    text-decoration: wavy;
    margin-bottom: 16px;
    font-weight: bold;
}

a:hover{
    text-decoration: underline;
}

.text-highlight{
    font-size: 16pt;
}


.navbar-two{ /* Mittige Navbar*/
    display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: center;
     align-items: center;
     align-content: center;
 }


  div.desc {
    padding: 15px;
    text-align: center;
  }

  .button {
    display: inline-block;
    border-radius: 4px;
    background-color: white;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }
 

.text { /*Text farbe*/
    color: #fee100;
}

.ueber_uns{
    justify-content: center;
    color: #fee100;
}