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

body{
    background-color: hsl(275, 100%, 97%);
}

.top-background{
    background-image:url(assets/images/background-pattern-desktop.svg);
    height: 50vh;
}

.container{
    background-color:hsl(0, 100%, 100%);
    width: 600px;
    /* margin: 0 auto; */
    margin-top: -200px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    border-radius: 16px;
}

h1{
    color: hsl(292, 42%, 14%);
    font-size: 48px;
    font-family: ;

}

.star-faq{
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.question{
    color: hsl(292, 42%, 14%);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.answer{
    color: hsl(292, 16%, 49%);
    font-size: 18px;
    margin-bottom: 8px;
    /* display: none; */
}

.hide{
    display: none;
}

button{
    border: none;
    background-color: transparent;
}
.question-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}





