.team h1 {
    color: #e59191;
    font-family: Langar;
    margin-bottom: 0;
    font-weight: 300;
}
.oben {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.team {
    box-shadow: rgba(0, 0, 0, 0.4) 0 5px 5px;
    margin-bottom: 3px;
}

.banner {
    display: flex;
    flex-direction: column;
    position: relative;
}
.bg {
    background-image: url('images/flower.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(5px);
    height: 500px;
}
.content p {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    margin-right: 100px;
    color: #292c2f;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 1px;
}
.background1 {
    margin-bottom: 200px;
    background-image: linear-gradient(to bottom, #FDC9C9 0%, #FDC9C9 60%, transparent 60%, transparent 100%)  
}
.background {
    margin-bottom: 200px;
    background-image: linear-gradient(to bottom, #e59191 0%, #e59191 60%, transparent 60%, transparent 100%)  
}
.abt {
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.abt h2 {
    text-align: center;
    font-family: Langar;
    font-weight: 300;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 1px;
}
.abt p {
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #292c2f;
    font-family: "Barlow Condensed", sans-serif;
    font-style: normal;
    font-size: 1.2rem;
}

.persons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    
}
.persons1 {
    display: flex;
    flex-direction: row;
   
}
.karte {
    margin-top: 100px;
    background-color: #93b893;
    width: 250px;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 4px 1px;
}
.person {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Barlow Condensed", sans-serif;
    color: #292c2f;
    text-align: center;
    background-color: #fff;
    margin: 20px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px 1px;
}

@media (max-width: 1000px) {
    .persons1 {
        flex-direction: column;
        align-items: center;
    }
    
}

@media (max-width: 768px) {
    .persons {
        flex-direction: column;
        align-items: center;
    }
    .persons1 {
        flex-direction: column;
    }
    
}

@media (max-width: 500px) {
    .karte {
        width: 200px;
    }
    .person {
        font-size: 15px;
    }
    .content p {
        font-size: 1.3rem;
    }
    
}


