* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "WorkSans";
    src: url("./assets/fonts/WorkSans-VariableFont_wght.ttf")
}

/*Variables css*/
:root {
    --white-color: hsl(0, 0%, 100%);
    --purple-100-color: hsl(275, 100%, 97%);
    --purple-600-color: hsl(292, 16%, 49%);
    --purple-500-color: #A927E4;
    --purple-950-color: hsl(292, 42%, 14%);
    --font-family: "WorkSans";
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--purple-100-color);
    background-image: url(./assets/images/background-pattern-desktop.svg);
    background-repeat: no-repeat;
    color: var(---purple-950-color);
    font-family: var(--font-family);
    font-size: 1rem;
    position: relative;
}
.container {
    width: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px 2px rgba(55, 36, 50, 0.12);
}
.title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.title-one {
    font-size: 2.5rem;
    font-weight: bold;
}
.img-star {
    margin-right: 20px;
    width: 30px;
    height: 30px;
}
.container-question {
    width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container-question:hover{
    color: var(--purple-500-color);
    cursor: pointer;
}
.text-question {
    font-weight: 700;
}
.container-faq {
    padding: 20px 0;
}
.container-faq:not(:last-child) {
    border-bottom: 2px solid var(--purple-100-color);
}
.answer{
    margin:12px 0 5px 0;
    color: var(--purple-600-color);
    line-height: 1.5;
}
.attribution {
    margin-top: 22px;
    font-size: 0.7rem;
    text-align: center;
}

.attribution a {
    color: var(--purple-500-color);
}

@media (max-width: 576px) {
    .container,.container-question {
        width: 300px;
    }
    .container{
        padding:22px;
    }
    .title{
        margin-top: 15px;
    }
}
@media (max-width: 375px) {
    body{
         background-image: url(./assets/images/background-pattern-mobile.svg);
    }
}






