.row-items {
    display: grid;
    grid-template-columns: 40% 50%;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

#animation {
    max-width: 400px;
}

.item-text>hr {
    margin-top: 12px;
    margin-bottom: 12px;
}
.align-justify {
    text-align: justify;
}


@media screen and (max-width: 700px) {
    .row-items {
        grid-template-columns: 100%;
    }

    .item-text>h2 {
        text-align: center;
    }

    .item-text>p {
        padding: 12px;
    }
}