* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1a1919;
}

.background {
    background-color: #eebfde;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    z-index: -1;
}

.background img {
    width: 100%;
    max-height: 30vh;
    object-fit: cover;
}

main {
    display: flex;
    margin: 8em auto;
    max-width: 500px;
    background-color: white;
    color: black;
    flex-direction: column;
    padding: 2em;
    border-radius: 10px;
    gap: 1em;
}

.title {
    display: flex;
    gap: 1em;
}

.title h1 {
    font-size: xxx-large;
    font-weight: bolder;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.container .faq {
    display: flex;
    flex-direction: column;
}

.container .faq .question {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.container .faq .question h2 {
    font-size: medium;
    font-weight: bold;

}

.container .faq .question h2:hover {
    cursor: pointer;
    color: blueviolet;
}

.container .faq .question img {
    width: 1.5em;
    height: 1.5em;
    margin-left: auto;
}

.container .faq .question .minus {
    display: none;
}

.container .faq .question.active .minus {
    display: block;
}

.container .faq .question.active .plus {
    display: none;
}

.container .faq .answer {
    line-height: 1.5;
    opacity: 0.5;
    display: none;
}

.container .faq .answer {
    display: none;
}

.container .faq .question.question.active + .answer {
    display: block;
}
