.vorstand {
    margin: 3em auto 1em;
    padding: 3em;
    width: 50vw;
    background-color: var(--accent-color);
    border-radius: 1em;
}

.vorstand .container {
    display: flex;
    background-color: rgb(249, 252, 251);
    align-items: center;
    gap: 10em;
    padding: 0.5em 0 0.5em 0;
    border-radius: 1em;
}


.avatar {
    margin: 0 0 0 2em;
    font-size: 16px;
    width: 4em;
    height: 4em;
    background-color: #6495ed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.avatar::after {
    content: attr(data-label);
}

@media (max-width:950px) {
    .vorstand .container {
        display: block;
    }
    .avatar {
        margin: 0 auto;
    }
    .funktion {
        width: fit-content;
        margin:5px auto;
    }
    .funktion p{
        padding: 10px;
    }
}

.button {
    margin: 0 0 2em 0;
    padding-bottom: 2em;
    display: flex;
    justify-content: center;
}

button {
    background-color: transparent;
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: var(--primary-text-color);
    opacity: .75;
    text-transform: uppercase;
}

button:hover {
    cursor: pointer;
}
