#comment_section{
    display: flex;
    flex-direction: row;
    margin-left: 10px;
}

/*Learned how to do animations from https://www.w3schools.com/css/css3_animations.asp*/
@keyframes fly-in {
    from {
        opacity: 0%;
        margin-top: 50px;
    }
    to {
        opacity: 100%;
        margin-top: 0px;
    }
}

.comment_display {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.comment {
    background-color: #253a5e;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
    width: 300px;
    animation-name: fly-in;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
}

.comment .delete_icon {
    border-radius: 5px;
}

.comment_head {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
}

.comment_author {
    font-size: large;
    margin-right: 10px;
    font-weight: bold;
}

.comment_date {
    font-size: small;
    font-style: italic;
    font-weight: lighter;
    color: #c7cfcc ;
}

.comment_head .delete_icon {
    margin-left: auto;
}

#comment_nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    margin-left: 8px;
}

#comment_up {
    background-image: url(../media/up_icon.png);
    background-position: top;
    padding-bottom: 68px;
}

#comment_down {
    background-image: url(../media/down_icon.png);
    background-position: bottom;
    padding-top: 68px;
}