body{
    background-color: rgb(255, 215, 255);
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6rem;
}

.accordian{
    background-color: white;
    padding: 4px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px rgb(255, 205, 255);
    cursor: pointer;
}

.question{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon{
    margin-right: 16px;
    transition: transform 0.4s;
}

.answer{
    color: #666;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s;
}
.answer.active{
    max-height: 100px;
}
.icon.active{
    transform: rotate(-180deg);
}