:root {
    font-size: 16px;
    font-family: "Work Sans", sans-serif;

    --white: hsl(0, 0%, 100%);
    --light-pink: hsl(275, 100%, 97%);
    --greyish-purple: hsl(292, 16%, 49%);
    --dark-purple: hsl(292, 42%, 14%);

    --f400: 400;
    --f600: 600;
    --f700: 700;
}

body {
    background-image: url("assets/images/background-pattern-desktop.svg");
    background-color: var(--light-pink);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
}

.container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
}

.row:not(:last-of-type) {
    border-bottom: 1px solid var(--light-pink);
}

.question {
    font-weight: var(--f700);
}

.title {
    display: flex;
    font-weight: var(--f700);
    gap: 15px;
    margin-bottom: 20px;
}

.star {
    width: 30px;
}

h1 {
    font-weight: var(--f700);
}

.sign {
    position: relative;
    border: transparent;
    background-color: transparent;
    cursor: pointer;
}

.minus {
    visibility: hidden;
    opacity: 0;
}

span {
    color: var(--greyish-purple);
}

@media screen and (min-width: 1400px) {
    body {
        padding-top: 130px;
    }
    .container {
        width: 45%;
        height: auto;
    }
    .plus, .minus {
        position: absolute;
        right: 90%;
        bottom: 20%;
    }
    
}


@media screen and (max-width: 376px) {
    body {
        background-image: url("assets/images/background-pattern-mobile.svg");
    }
    
    .container {
        width: 90%;
    }
    
    .plus, .minus {
        position: absolute;
        bottom: 20%;
        right: 30%;
        transition: 1s;
    }
    
}

