.section-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.927);
}

.faq-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq-headline h2 {
    font-family: "Autumn-Wind";
    font-size: 70pt;
    font-weight: 400;
    text-align: center;
}

.faq-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 50px;
    /*margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    height: 300px;*/
}

.faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px 30px;
    /*width: 1000px;*/
    border: 1px solid rgba(0 0 0 / .1);
    border-radius: 5px;
    position: relative;
    line-height: 1.5em;
    margin-top: 15px;
}

#faq {
    margin: 0;
    padding-top: 0;
}

.faq h4 {
    color: black;
}

/*.faq p {
    display: none;
}*/

.faq p {
    display: block;
    font-size: 13pt;
}

.faq.open .btn {
    color: black;
}

.btn {
    position: absolute;
    right: 25px;
    top: 35px;
    font-weight: 400;
    font-size: 1.4em;
    width: 30px;
}

.btn:hover {
    cursor: pointer;
}

@media(max-width: 800px) {
    .faq-headline h2 {
        max-width: 90%;
        font-size: 9vw;
    }
    .faq h4 {
        max-width: 90%;
        font-size: 4vw;
    }
    .faq p {
        max-width: 90%;
        font-size: 4vw;
    }
    .faq-text {
        max-width: 90%;
    }
}