.comment{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}
.comment > img {
    margin-left: 5px;
    margin-right: 5px;
    min-width: 40px;
    max-width: 40px;
}
.comment .name {
    font-weight: bold;
}
.form-center{
    display: flex;
    justify-content: center;
}
.comment-form{
    display: flex;
    flex-direction: column;
    width: 60vw;
}
.comment-form > div{
    display: flex;
}
.comment-form > div > * {
    flex: 1;
    margin: 5px;
}
.comment-form > textarea{
    height: 5em;
}

article, .comment-panel, .tags, .share{
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.tags > span{
    font-weight: bold;
}

#captcha > input[type="number"] {
    height: 1em;
}
#captcha{
    align-items: center;
}

.share > h5{
    text-decoration: underline;
}

.share > ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#sent-comment{
    text-align: center;
    color: green;
    background-color: rgb(185, 252, 130);
}