body {
    background-color:black;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6rem;
}

h2 {
    color: white;
}
.accordian {
    background-color: white;
    padding: 4px 16px;
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px whitesmoke;
}

.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon {
    margin-right: 16px;
    transition: transform 0.2s;
}

.icon.active {
    transform: rotate(-180deg);
}

.answer {
    color: #222222;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
}
