html, body {
    font-family: Arial, sans-serif;
    font-size: 100%;
    color: #202020;
}

html, body {
    height: 100%;
}

.page {
    width: 100%;
    min-height: 100vh;
}

h1 {
    font-family: Helvetica;
    font-size: 2.6em;
    text-transform: uppercase;
}

p {
   color: #666666;
   font-size: 1.5em;
}

.info {
   max-width: 45%;
   min-height: 100vh;
   padding: 4em 0 0 4em;
}

.background-overlay {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 95%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
}

.background-overlay::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
}

.background-overlay::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    top: 0;
    right: 100%;
    width: 1000px;
    height: 100%;
    background-color: #fff;
    transform-origin: bottom right;
    -webkit-transform: skewX(156deg);
    -moz-transform: skewX(156deg);
    -ms-transform: skewX(156deg);
    -o-transform: skewX(156deg);
    transform: skewX(156deg);
}
