@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Kumbh+Sans:wght@100..900&family=League+Spartan:wght@100..900&family=Lexend+Deca:wght@100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap');

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

: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{
    font-family: "Work Sans", sans-serif;
    background: url(./assets/images/background-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100vw;
    height: 100vh;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Purple-100);
    
}

.container{
    width: 630px;
    height: fit-content;
    background-color: var(--White);
    padding: 2rem;
    border-radius: 1rem;
}
header{
    display: flex;
    align-items: center;
    margin: 0.1rem 0 1.4rem;
}
header h1{
    font-size: 3rem;
}
header img{
    width: 30px;
    height: 30px;
    margin-right: 1.5rem;
}
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h2{
    margin: 1.3rem 0 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

p{
    font-weight: 400;
    font-size: 1rem;
    color: var(--Purple-600);
    line-height: 1.4rem;
    margin-bottom: 2rem;
    display: none;
}
hr{
    border: 1px solid var(--Purple-100);
    
}

h2:hover{
    color:rgb(165, 0, 165);
}



