.rubfaq {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-top: 3%;
}
.mainfaq {
    text-align: center;
    place-items: center;
    margin-bottom: 100px;
}
.quest {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
    background-color: lightblue;
    border: none;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.3s;
}
.quest:hover {
    background-color: lightcyan;
    cursor: pointer;
    box-shadow: 5px 5px 10px powderblue;
}
.answer {
    display: none;
    font-size: 20px;
    margin-top: 10px;
    border: 2px solid black;
    border-radius: 5px;
    background-color: powderblue;
    width: 80%;
    padding: 15px;
}