Sloping side sections

by Kitson Broadhurst

HTML

<div class="container">
    <div class="slope">
        <div class="content">
             <h3>A Headline</h3>

            <p>Some Text</p>
        </div>
    </div>
    <div class="slope">
        <div class="content">
             <h3>Are you ready?</h3>

            <p>The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee.</p>
        </div>
    </div>
    <div class="slope">
        <div class="content">
             <h3>A Headline</h3>

            <p>Some Text</p>
        </div>
    </div>
</div>

CSS

body {
    backgrond: #e90089;
}
.container {
    display: block;
    width: 100%;
    overflow: hidden;
    padding-top: 150px;
}
.slope {
    margin: 0 -50px;
    transform-origin: left center;
}
.slope:nth-child(odd) {
    background: #000;
    transform: rotate(5deg);
    margin-top: -200px;
    box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.4);
}
.slope:nth-child(even) {
    background: #e90089;
    transform: rotate(-5deg);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4) inset;
}
.content {
    margin: 0 auto;
}
.content h3 {
    font-size: 60px;
    position: relative;
    display: inline-block;
    padding: 10px 30px 8px 30px;
    height: 80px;
    line-height: 80px;
    margin-bottom: 20px;
    font-family:'Bitter', 'Trebuchet MS', Arial;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
}
.slope:nth-child(odd) .content h3 {
    background: #e90089;
    color: #000;
}
.slope:nth-child(even) .content h3 {
    background: #000;
    color: #e90089;
}
.content h3:before {
    content:'';
    width: 0;
    height: 0;
    border-top: 38px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 60px solid black;
    position: absolute;
    left: -59px;
    top: 0px;
}
.content h3:after {
    content:'';
    width: 0;
    height: 0;
    border-top: 38px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid black;
    position: absolute;
    right: -59px;
    top: 0px;
}
.slope:nth-child(odd) .content h3:before, .slope:nth-child(odd) .content h3:after {
    border-right-color: #e90089;
    border-left-color: #e90089;
}
.content p {
    width: 75%;
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
    padding-top: 10px;
}
.content p:first-letter {
    font-size: 40px;
    font-family:'Adobe Garamond Pro', Georgia, serif;
}
.slope:nth-child(odd) .content {
    transform: rotate(-5deg);
    color: #e90089;
    padding: 130px 100px 250px...