.allquestions {
    width: 90%;
    display: flex;
    margin: auto;

    flex-direction: row;
    flex-wrap: wrap;
    height: 400px;

    margin-top: 60px;
    margin-bottom: 200px;
    gap: 20px;

    max-width: 1400px;
    position: relative;
}

/* question list */ 

.questiongroup {
    max-width: 400px;

    height: 15%;
    min-height: 60px;
    max-height: 60px;

    display: flex;
    flex-direction: column;
    margin: 10px auto;
}

.questionlist {
    width: 60%;
    max-width: 400px;
    min-width: 300px;

    background-color: #1E90FF;
    height: 15%;
    min-height: 60px;

    max-height: 60px;
    display: flex;
    margin: 10px auto;

    border-radius: 10px;
    box-shadow: 3px 3px 10px black;
    cursor: pointer;

    margin-bottom: 0;
}

.questionlist .left {
    margin: auto auto auto 10px;
    font-size: clamp(20px, 5vw, 35px);
}

.questionlist img {
    width: 30px;
    height: 30px;
    margin: auto 10px auto auto;
}


.faq-answer {
    padding: 1rem;
    background: #0066CC;
    display: none;

    width: 70%;
    margin: auto;

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 5px 5px 20px black;
}


@media only screen and (min-width: 500px) and (max-width: 920px) {
    .allquestions {
        margin-bottom: 300px;
    }
}

@media only screen and (min-width: 600px) {
    .questionlist {
        max-width: 400px;
        min-width: 400px;
    }
    .faq-answer {
        width: 90%;
    }
}
@media only screen and (min-width: 915px) {
    .allquestions {
        margin: auto;
        margin-top: 50px;
    }
}

.displayy {
    display: block;
}

/* text fix */
p strong {
    font-size: x-large;
    color: white;
}
p {
    color: rgb(229, 172, 172);
    font-size: large;
}