#aboutus {
    background-color: #D80032;
    padding-bottom: 3%;
}

.about h1  {
    color: #fff;
    text-align: center;
    font-size: 35px;
    padding-top: 2%;
}

.line-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-bottom: 3%;
}

.line {
    width: 150px;
    height: 4px;
    background-color: #fff;
    border-radius: 10px;
}

.about p {
    color: #fff;
    font-size: 18px;
}


/*Button */
.kontakt-btn {
    width: 190px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 45px;
    transition: all 0.3s;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(21, 32, 105, 1) 3%, rgba(60, 60, 179, 1) 13%, rgba(0, 212, 255, 1) 100%);
    font-size: 1.2em;
    font-weight: 550;
    color: #fff;
    margin-left: 42%;
   
  }
  
  .kontakt-btn:hover {
    background: linear-gradient(90deg, rgba(21, 32, 105, 1) 3%, rgba(60, 60, 179, 1) 13%, rgba(0, 212, 255, 1) 100%);
    color: white;
    font-size: 1.5em;
  }

/*Media Querys 
Mobile*/
@media only screen and (max-width: 767px) {
    .about p {
        word-wrap: break-word;
        font-size: 1em;
        margin-left: 8%;
        margin-right: 5%;
        margin-top: 5%;
    }

    #aboutus {
        padding-bottom: 10%;
    }

    .kontakt-btn {
        margin-left: 27%;
        margin-top: 2%;
    }

    

    
}   
