/* styling buttons */
.show-more-btn {
    margin: auto;
    cursor: pointer;
    color: #0095e5;
    white-space: nowrap;
    transition: color 300ms ease-in-out;
    border: 0;
    font-size: 0.8em;
    background: transparent;
}
.show-more-btn:hover {
    color: red;
}
.hidden {
    display: none;
}