
@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');


*{
    margin:0;
    padding:0;
}

body{
    background-color: hsl(210, 36%, 96%);
    font-family: 'Zen Kurenaido', sans-serif;
    font-weight: 600;
}

.container{
    width:100%; 
    height:100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    color: rgb(255, 134, 86);
    font-family: "Great Vibes", cursive;
    font-size: 3rem;
    margin-top: 1em;
    padding:.5em;
    margin-bottom: 1.3em;
    border:5px solid rgb(255, 134, 86);
}

h2{
    color: rgb(255, 134, 86);
    font-size: 2rem;
    margin-bottom: 1em;
}

h3{ 
    padding:0; 
}

.questions{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question{
    width:50%;
    background-color: white;
    box-shadow: 5px 5px 10px rgb(255, 134, 86);
    border-radius: 20px;
    margin-bottom: 1.5em;
    
    
}

.question-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:1.5em;
}



.question-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(255, 134, 86);
    transition: all .3s linear;
}

.question-btn:hover {
    transform: rotate(90deg);
    color: rgb(255, 93, 29);
  }

.minus-icon{
    display:none;
}

.question-text {
    padding:1em 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: none;
    }

.question-text p{
    padding:.5em;
}


.show-text{
    transform: scale(1.1);
}

.show-text .question-text{
    display: block;
}

.show-text .minus-icon {
    display: inline;
  }

.show-text .plus-icon {
    display: none;
  }


@media(max-width:740px){

    .question{
        width:80%;
        margin-bottom: 1.9em;
    }

    .question-btn:hover {
        transform: none;
}


}