*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
--White:hsl(0, 100%, 100%);
--Purple-100:hsl(275, 100%, 97%);
--Purple-600:hsl(292, 16%, 49%);
--Purple-950:hsl(292, 42%, 14%);
}
body{
    display: flex;
    height: 100vh;
    background-image:url("./assets/images/background-pattern-desktop.svg");
    background-size: auto 300px;
    background-repeat: no-repeat;
    background-color: var(--Purple-100);
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family:"Work Sans";
}
.container{
    background:var(--White);
    width: 400px;
    margin:0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 3px 0px 3px 3px black;
}
.header{
    display: flex;
    margin: 15px;
    gap: 1rem;
}
.header img{
    height: 25px;
    align-items: center;
    margin-top: 6px;
}
.header h1{
    font-size: 3rem;
    justify-content: center;
    font-weight: bolder;
}
.faq-questions{
    padding: 20px;
    margin-top:-20px;
}
.questions{
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.questions :hover{
    color: var(--Purple-950);
}
button{
    background: var(--White);
    border: none;
    padding: 0;
    cursor: pointer;
}
button img{
    height: 20px;
}
.answer{
    margin-bottom: 20px;
    display: none;
}
h4{
    font-size:1rem;
    margin-bottom: 25px;
}
@media (min-width: 100px) and (max-width: 1440px) { 
    .body{
        background-image: url("./assets/images/background-pattern-mobile.svg");
        background-size: 100px auto;
        height: 50vh;
    }
    .container{
        width: 300px;
        margin: 0 auto;
        align-items: center;
    }
 }

