

body {
    background-color: rgb(198, 234, 248);
    margin: 40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6rem;
   

}

h2{
    color: rgb(30, 25, 25);
    
    
}

.accordian {
    background-color: #fff;
    margin-bottom: 16px;
    padding: 4px 16px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px pink;
    cursor: pointer;
    

    
}

.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    

}

.icons {
    margin-right: 10px;
    transition: transform 0.2s;
}

.answer {

    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;

}

.answer.active{

    max-height: 200px;

}

.icons.active{

    transform: rotate(-180deg);

    
}

h3 {

    text-align: center;
    color: gray;
}

.answer p img{
    
   
   height: 480px;
   width: 480px;
   justify-content: center;
   align-items: center;



}