.title {
    margin-top: 16px;
    cursor: pointer;
}

.title > *:first-child {
    flex: 1;
}

.accordion {
    overflow: hidden;
    max-height: 0;

    transition: max-height 0.4s linear;
}

.accordion.active {
    max-height: 1000px;
}

.accordion-btn {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    margin-bottom: 3px;
    margin-left: 12px;

    font-size: 30px;
    font-weight: bold;
    text-align: center;
    border: 3px solid black;

    transition: background-color 0.4s ease-out, color 0.4s ease-out;
}

.title:hover .accordion-btn {
    background-color: black;
    color: white;
}

.accordion p:first-child {
    margin-top: 0;
}


#ice, #healthcare, #military-aid, #party {
	scroll-margin-top: 100px;
}