.container{
    margin:  3em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.storyDiv{
    margin-top: 2em;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.story{
    width: 33.333%;
    padding: 2em;
    font-size: 16px;
}

#img{
    width: 100%;
}

.name{
    font-size: 26px;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.comment{
    font-size: 18px;
    line-height: 30px;
}

@media screen and (max-width: 992px) {
    .storyDiv {
        justify-content: center;
    }
    .story {
        width: 50%;
    }
}


@media screen and (max-width: 768px) {
    .story {
        width: 90%;
        justify-content: center;
    }
}