html,
body {
    margin: 0;
    padding: 0;
}

html {
    overflow:scroll;
    font-size: 20px;
    line-height: 1.0;
}
@media (min-width: 35rem) {
    html {
        font-size: 20px;
    }
}

.responsive-paragraph {
    font-size: 20px;
}

@media (max-width: 35rem) {
    .responsive-paragraph {
        font-size: 3vw;
    }
}

body {
    color: #515151;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a {
    color: #515151;
    text-decoration: none;
    position: relative;
}
a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #b1b1b1;
    bottom: 1.5px;
    left: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: bold;
    line-height: 1.3;
    color: #313131;
    text-rendering: optimizeLegibility;
}
h1 {
    font-size: 1.5rem;
}
h2 {
    font-size: 1.25rem;
}
h3 {
    font-size: 1rem;
}
h4 {
    font-size: 0.75rem;
}
h5 {
    font-size: 0.50rem;
}
h6 {
    font-size: 0.25rem;
}


/* Lists */
ul, ol, dl {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
}

dt {
    font-weight: bold;
}
dd {
    margin-bottom: .5rem;
}
hr {
    position: relative;
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
}
img {
    max-width: 100%;
    margin: 0 0 1rem;
    border-radius: 5px;
}

.container {
    max-width: 38rem;
    padding-left:  1rem;
    padding-right: 1rem;
    margin-left:  auto;
    margin-right: auto;
}

.icon-links a{
    text-align: center;
    float: left;
    width: 36px;
    height: 36px;
    border: 1px solid #909090;
    border-radius: 100%;
    margin-right: 7px; /*space between*/

}
.icon-links a i{
    font-size: 20px;
    line-height: 38px;
}




.collapsible {
    -webkit-appearance: none;
    appearance: none;
    background: white;
    border: none;
    outline: none;
    box-shadow: none;

    padding: 18px;
    width: 100%;
    text-align: left;
    font: inherit;
    color: black;
}
.collapsible_content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}
.collapsible:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}
.collapsible_content ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
