

h1{
    display:none;
}
.post-content ul {
    position: relative;
    margin: 1em;
    margin-left: 2em;
}

.post-content ul::before {
    content: ' ';
    height: 100%;
    width: 0.4em;
    background-color: #ebebeb;
    position: absolute;
    top: 0;
    left: 0.5em;
}

.post-content li {
    display: inline-block;
    margin: 1em 0;
    vertical-align: top;
    background-color: #ebebeb;
    padding: 0.8em;
    width: 80%;
    border-radius: 10px;
}

.post-content li::before {
    content: ' ';
    width: 1.4em;
    height: 1.4em;
    position: absolute;
    border-radius: 50%;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    background: #ffb6c1;
    border: 4px solid #ffffff
}

.post-content strong {
    display: block;
    margin-bottom: 0.2em;
    color: #F4645F;
}

.post-content strong::before {
    content: " ";
    left: 0em;
    width: 1.5em;
    border: solid transparent;
    position: absolute;
    pointer-events: none;
    border-right-color: #ebebeb;
    border-width: 10px;

}

.post-content em {
    display: block;
    font-style: normal;
    font-weight: 300;
}