body .accordion-wrapper {
    /*color: rgba(4,57,94,1);*/
    /*background: rgba(4, 57, 94, .1);*/
    /*padding: 0 1em 1em;*/
    /*font-family: 'Open Sans', sans-serif;*/
}

h1 {
    /*text-align: center;*/
}

input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    width: 100%;
    /*margin: 0 auto;*/
}

.accordion {
    width: 100%;
    /*color: white;*/
    overflow: hidden;
    margin-bottom: 16px;
}

.accordion:last-child {
    margin-bottom: 0;
}

.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    background: #d7df22;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    /*color: black;*/
    text-shadow: 0px 0px 5px white;
    align-items: center;
}

.accordion-label:hover {
    background: #c2ca20;
}

.accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-content {
    max-height: 0;
    padding: 0 5px;
    /*color: rgba(4, 57, 94, 1);*/
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-content p {
    margin: 0;
    /*color: rgba(4, 57, 94, .7);*/
    /*font-size: 18px;*/
}

input:checked+.accordion-label {
    background: #c2ca20;
}

input:checked+.accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

input:checked~.accordion-content {
    max-height: 100vh;
    padding: 5px;
}