.main-header {
    background-image: url(../img/profil.jpg);
    height: 92vh;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(0.9);
}

.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh; /* 100% der Bildschirmhöhe verwenden */
  }
  
  .main-header img,
  .main-h1-1,
  .main-h1,
  .whatsapp-logo,
  .btn {
    margin: 10px; /* Optional: Füge Abstand zwischen den Elementen hinzu */
  }

.main-h1-1,
.main-h1 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); 
}

.main-header img {
    max-width: 100%;
}

.whatsapp-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/*Button */
.more-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-bottom: 3%;
  }
  
  .more-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 */

.header-mobile {
  display: none;
}


@media only screen and (max-width: 767px) {
   
  .main-header {
    display: none;
  }

  .header-mobile {
    display: block;
    background-image: url(../img/header-img.jpg);
    height: 73vh;
  }
  
  .header-mobile img {
        max-width: 100%;
        margin-left: -1%;
        
   } 

  
   .whatsapp-logo img {
        width: 115%;
   }

   .more-btn {
    margin-left: 25%;
   }

   .main-h1,
   .main-h1-1 {
    text-align: center;
   }

   
   

   

}


