.center__display{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comment__card{
    width: 100%;
    display: grid;
    grid-template-columns: 70px auto;
    /* margin: 0.5rem; */
    border-bottom: 1px solid #cccccc;
    margin-bottom: 18px;
}

.comment__card .pic{
    background-color: #856a5a;
    border-radius: 50%;
    width: 50px;
    height: 49px;
    margin: 10%;
    font-size: 21px;
    color: white;
    text-transform: uppercase;
}


.comment__info .nickname{
    color: #a19164;
    font-weight: bold;
    font-size: 18px;
    text-transform: capitalize;
}

.comment__info .comment{
    margin: 3px 2px 15px 2px;
    text-align: justify;
}

.comment__info .comment__bottom{
    display: flex;
}

.comment__bottom button{
    border: none;
    background: transparent;
    color: #aaa;
    text-transform: uppercase;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}