/* ********FONT*************

font-family: 'Kumbh Sans', sans-serif; 
*/

/* 
### Primary

#### Text

- Very dark desaturated blue: hsl(238, 29%, 16%)
- Soft red: hsl(14, 88%, 65%)

#### Gradient

Background gradient:

- Soft violet: hsl(273, 75%, 66%)
- Soft blue: hsl(240, 73%, 65%)

### Neutral

#### Text

- Very dark grayish blue: hsl(237, 12%, 33%)
- Dark grayish blue: hsl(240, 6%, 50%)

#### Dividers

- Light grayish blue: hsl(240, 5%, 91%)
 */



*, *::before, *::after{
    box-sizing: border-box;
}
body{
    width: 100%;
    background: linear-gradient(hsl(273, 75%, 66%), hsl(240, 73%, 65%));
    background-attachment: fixed;
    text-align: center;
    font-family: 'Kumbh Sans', sans-serif; 
    Font-size: 12px;
    color: hsl(238, 29%, 16%);
}
h1{
    margin-top: -6rem;
    font-weight: 700;
    font-size: 2rem;
}
.card{
    margin: 12rem auto 2rem;
    width: 75%;
    background-color: white;
    border-radius: 2rem;
}
.woman{
    width: 225px;
    position: relative;
    bottom: 6.7rem;
    filter: drop-shadow(0 1.8rem .3rem rgba(210,210,210,.8));
}
.question{
    width: 75%;
    margin: 0 auto;
}
.qrow{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.arrow{
    width: 5%;
    height: 5%;
    transform: rotate(0deg);
    transition: transform 1s linear;
}
.qcontainer:hover{
    cursor: pointer;
}
.divider{
    border-top: 3px solid hsl(240, 5%, 91%);
    margin: .2rem auto;
    width: 75%;
    opacity: 50%;
}
.divider:last-of-type{
    padding-bottom: 2rem;
}
.quest{
    font-weight: 400px;
    text-align: left;
}
.rotated{
    transform: rotate(180deg);
    transition: transform 1s linear;
}
.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out; 
    text-align: left;;
}
.attribution { 
    font-size: 11px; 
    text-align: center; 
    background: white;
    width: 60%;
    margin: 0 auto;
    max-width: 300px;
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
.qcontainer p:active{
    color: hsl(14, 88%, 65%);
}


@media (min-width: 600px){
    .card{
        display: flex;
        justify-content: space-between;
    }
    .woman{
        bottom: 0;
        right: 3.45rem;
        width: 50%;
        max-width: 450px;
        filter: drop-shadow(4rem 4rem 5px rgba(210,210,210,.8));
    }
    h1{
        margin-top: 2rem;
    }
    .qrow{
        justify-content: space-evenly;
    }
}