body{
    background-color: var(--main_background_color);
    height: 100%;
    margin: 0;
}
.main{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.wrapper{
    height: auto;
}
.mitarbeiter{
    height: 85vh;
    background-image: url("../img/mitarbeiter/gründung_bis_gegenwart.jpg");
    background-repeat: no-repeat;
    background-size:cover;
}
.mitarbeiter_top{
    position: relative;
    padding-top: 200px;
    height: 100%;
    box-sizing: border-box;
}
.mitarbeiter_top_text{
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-top: auto;
    margin-bottom: auto;
    width: 35%;
    height: 70%;
    box-sizing: border-box;
}
.mitarbeiter_top_text_content{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: auto;
    color: white;
    text-shadow: 1px 1px 10px black;
}
.mitarbeiter_top_text_content_top{
    font-weight: bold;
    font-size: 20px;
}
.mitarbeiter_top_text_content_header{
    font-weight: bold;
    font-size: 50px;
}
.mitarbeiter_top_text_content_text{
    padding-top: 10%;
    height: 30%;
}
.mitarbeiter_top_text_content_button{
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    margin-left: 10%;
    margin-right: 55%;
    width: 10em;
    border-radius: 0.5em;
    background-color: black;
    color: white;
    font-weight: bold;
    transition: background-color 0.1s ease-in-out;
    box-shadow: 0px 0px 5px white;
}
.mitarbeiter_top_text_content_button:hover{
    background-color: #444;
}
.mitarbeiter_top_text_content_button:active{
    background-color: #666;
}
.mitarbeiter_top_text_content_button_text{
    margin: auto;
    font-size: medium;
}
.mitarbeiter_list_header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 7em;
    color: white;
    background-color: black;
    text-align: center;
    padding: 10px 0;
    >h1{
        margin: 0;
    }
    >p{
        margin: 0;
    }
}
.mitarbeiter_section{
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    > h2{
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.mitarbeiter_grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3em;
}
.mitarbeiter_content{
    background-size: cover;
    background-position: center;
    border-radius: 1em;
    > p{
        margin-top: 10px;
        font-size: 16px;
    }
}
.mitarbeiter_bild{
    height: 256px;
    width: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
/*Animationen und Media*/
@media(max-width: 768px) {
    .mitarbeiter{
        background-image: url("../img/mitarbeiter/gründung_bis_gegenwart.jpg");
    }
    .mitarbeiter_section{
        width: auto;
        margin: 20px;
    }
    .mitarbeiter_top_text{
        width: auto;
    }
    .mitarbeiter_content{
        text-align: center;
    }
    .mitarbeiter_bild{
        margin: auto;
    }
}