header {
    position: relative;
    height: 200px;
    background-image: linear-gradient(#ff9d2f, #ff6126);
}

h1 {
    margin: 0;
    padding: 50px 0;
    font: 44px "Arial";
    text-align: center;
}

header h1 {
    color: white;
}

.divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    /* drop the height to have a constant angle for all screen widths */
}

Media Query Section ================================*/

/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait phones and smaller */
@media (max-width: 480px) { 
    table.table tr.none {
        display: none;
    }

}