@font-face {
    font-family: 'Romana';
    src:  url('Romana-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Avant-Garde';
    src:  url('avant-garde.ttf') format('truetype');
}

html, body, div,
h1, h2, p,
a, img, li {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
    line-height: 1;
    font-family: 'Avant-Garde';
}

.wrapper {
    width: 100%;
    padding: 20px 200px;
    box-sizing: border-box;
}

.heading {
    position: absolute;
    text-align: left;
}

.background-highlight {
    background-color: red;
    height: 400px;
    width: 46px;
    position: absolute;
    left: -180px;
    top: 0;  
    z-index: 0;
}

h1 {
    font-family: 'Romana', serif;
    height: 400px;
    width: 120px;
    font-size: 40px;
    font-weight: bold;
    z-index: 10;
    position: absolute;
    left: -180px;
    top: 0;
}

h2 {
    font-family: 'Romana', serif;
    width: 120px;
    height: 40px;
    font-weight: bold;
    position: absolute;
    z-index: 10;
    top: 420px;
    font-size: 24px;
    left: -180px;
}

.image-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.copy {
    text-align: left;
    max-width: 660px;
    line-height: 1.6;
    margin: 20px 20px 0 0;
}

p {
    margin-top: 20px;
}

@media (max-width: 1070px) {
    .image-wrapper {
        max-width: 480px;
    }

    .wrapper {
        padding: 20px 100px;
    }

    h1, h2 {
        height: 400px;
        width: 80px;
        font-size: 24px;
        left: -120px;
    }

    .background-highlight {
        width: 27px;
        left: -120px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 20px 20px 20px 100px;
    }

    .image-wrapper {
        max-width: 300px;
    }

    h1, h2 {
        height: 400px;
        width: 60px;
        font-size: 20px;
        left: -80px;
    }

    h2 {
        top: 340px;
        font-size: 18px;
    }

    .background-highlight {
        width: 22px;
        left: -80px;
        height: 320px;
    }


}