@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: "Work Sans", sans-serif;
    background-color: hsl(275, 100%, 97%);
    background-image: url(./assets/images/background-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-size:auto 45%;
    background-position: top;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(292, 42%, 14%);
}

main {
    padding-left: 30px;
    padding-right: 30px;
}

.card {
    background-color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 0px 40px;
    border-radius: 15px;
}

.title {
    display: flex;
}

.title img {
    max-width: 30px;
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.faq {
    font-size: 2.5rem;
    margin: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

h4:hover {
    color: rgba(173,40,235,255);
}

.toggle-icon {
    background: none;
    border: none;
}

.toggle-icon img {
    max-width: 25px;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.7rem;
    color: hsl(292, 16%, 49%);
}

.faq-answer p {
    margin-top: 0;
    padding: 0;
    font-size: 1rem;
}

article {
    border-bottom: 1px solid rgba(140,105,145,0.1);
}

article:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}




