/* Weights: 400, 600, 700 */
/* Family: Work Sans */

/* small reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* variables */

:root {
    --white: hsl(0, 0%, 100%);
    --light-pink: hsl(275, 100%, 97%);
    --grayish-purple: hsl(292, 16%, 49%);
    --dark-purple: hsl(292, 42%, 14%);
}

/********** global items **********/
/********** global items **********/
/********** global items **********/

body {
    min-height: 100vh;
    padding-top: 8.5rem;
    font-family: "Work Sans";
}

.img {
    position: absolute;
    top: 0;
    height: 29vh;
    width: 100%;
    background-image: url(../img/background-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

main {
    width: 90%; 
    max-width: 34rem;    
    margin: auto;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-purple);
}

.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.1rem;
}

.answer-one,
.answer-two,
.answer-three,
.answer-four {
    display: none;
}

/********** items **********/
/********** items **********/
/********** items **********/

/* tittle  */

.title {
    display: flex;
    gap: 1rem;
}

h1 {
    font-size: 2rem;
    color: var(--dark-purple);
}

/* text */

p {
    color: #8D878E;
    line-height: 1.4;
    font-weight: 400;
    font-size: 0.91rem;
}



