.faq{
    min-height: 100vh;
    padding: 0 14vw 0 14vw;
    background-color: #F5BD00;
    box-shadow: 0px 5px 8px #888888;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

    .frage{
        min-width: 72vw;
        border: 3.5px solid #7400BE;
        border-radius: 75px;
        height: fit-content;
        width: fit-content;
        display:inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin: 2.5vh 0 2.5vh;
        padding: 5px 10px 2px 0;
        }
        
        .button-answer{
            margin:1vh 1vw 1vh;
            cursor: pointer;
            padding: 0;
        }
        
        /* .frage:focus ~ .antwort{
            display:block;
        }
        .frage:focus > .button-answer{
        transform: rotate(90deg)
        } */
       /* .frage:focus{
            margin: 2.5vh 0 0 0;
        } */
       


    .antwort{
        margin: 1vh 4.5vw 4vh;
        display: none;
    }

    .aktuell-ausgewählt-faq{
        color: #735BFF;
    } 