body{
    background-color: hsl(275, 100%, 97%);
    font-family: "Work Sans", serif;
    background-image: url(assets/images/background-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-size: cover; /* use for ideal design / keeps the full width when screen size changes */
}

.white-card{
    /* CSS property is used to move an element horizontally and vertically by a specified percentage of its own size. 
    It is often used to center an element both horizontally and vertically within its parent container.
    For example, if you have a div element with a width and height of 200px, applying transform: translate(-50%, -50%); 
    to it will move the div 50% to the left and 50% up, effectively centering it within its parent container. */
    position: fixed;
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border-radius: 20px;
    background-color: hsl(0, 0%, 100%);

    /* horizontal, vertical, blur, spread */
    box-shadow: 5px 20px 12px 5px hsla(292, 16%, 49%, 0.2);
}

.header{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.star-icon{
    width: 50px;
    height: 50px;
    padding-right: 20px;
}

.faq{
    color: hsl(292, 42%, 14%);
    font-size: 60px;
    font-weight: 700;
}

.question-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 2px;
    border-color: hsl(275, 100%, 97%);
    padding: 20px 0px;

    cursor: pointer;
}

.question{
    color: hsl(292, 42%, 14%);
    font-size: 18px;
    font-weight: 700;
}

.question:hover{
    color:hsl(293, 100%, 41%);
    cursor: pointer;
}

.faq-button::after{
    content: url(assets/images/icon-plus.svg);
}

.answer{
    color: hsl(292, 16%, 49%);
    padding: 20px 0px;
    display: none;
    overflow: visible;
}

.faq-content.active .faq-button::after {
    content: url(assets/images/icon-minus.svg);
}

.faq-content.active .answer {
    display: block;
}