.title {
    display: flex;
    flex-direction: row;
}

section {
    margin-top: 2rem;
}

section h2 {
    position: relative;
    display: inline-block;
}

section h2::before, section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .25em;
    background-color: var(--accent-color);
    z-index: -1;
}

section h2::after {
    transform: skew(-20deg);
    left: 5%;
}

section p {
    margin-top: .5em;
}

@media (max-width: 900px) {
    .title {
        flex-direction: column;
    }
}