/* Landing Page */

*{
    margin: 0;
    padding: 0;
    font-family: 'Golos Text', sans-serif;
}
#banner{
    background-color: #6A93B0;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.banner-text{
    text-align: center;
    color: white;
    padding-top: 80px;
}
.banner-text h1{
    font-size: 130px;
    font-family: 'Merriweather', serif;
}
.banner-text p{
    font-size: 30px;
    font-style: normal;
}
.banner-btn{
    margin: 80px auto 0;
}
.banner-btn a{
    font-size: 20px;
    width: 200px;
    text-decoration: none;
    display: inline-block;
    margin: 0 50px;
    padding: 12px 0;
    color: white;
    border: 0.5px solid white;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span {
    width: 100%;
}
.banner-btn a:hover{
    color: black;
}

.box {
    width: 400px;
    padding: 30px;
    margin: 50px;
    text-align: center;
    display: inline-block;
    border: 2px solid #000;
    background-color: #fff;
    border-radius: 15px;
  }
  
  .box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
  }
  
  .box img[src$=".JPG"] {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    max-height: 200px;
  }
  
  .box h2 {
    color: #000;
    margin-top: 10px;
    font-size: 24px;
  }
  
  .box p {
    color: #000;
    margin-top: 10px;
    font-size: 20px;
    font: 100;
    text-align: left;
  }
 .box .button {
    display: inline-block;
    padding: 20px 30px;
    background-color: #6A93B0;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
  }

/*--
@media screen and (max-width: 770px){
    .banner-text h1{
        font-size: 44px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}
--*/
/*--wiederholung
#wiederholung{
    width: 100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;

}
.title-text p{
    margin: auto;
    font-size: 20px;
    color: #009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019578,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}    
.title-text h1{
    font-size: 50px;
}
--*/
/* Landing Page Ende */