/* http://meyerweb.com/eric/tools/css/reset/ 
 v2.0 | 20110126
 License: none (public domain)
 */

 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed, 
 figure, figcaption, footer, header, hgroup, 
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   vertical-align: baseline;
 }


@import url('https://fonts.googleapis.com/css?family=Montserrat|Parisienne');


body {
  color: #ffe7c4;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
}

.left {
  text-align: center;
  float:left;
  width: 50%;
  background-color: #0e0e0e;
  height:100vh;
}

.right {
  float: left;
  width: 50%;
  background-color: #a81e23;
  height:100vh;
  padding-left:10%;
  padding-right: 10%;
  box-sizing:border-box;
  position: relative;
}


h1 {
  color: #ffe7c4;
  font-family: 'Parisienne', cursive;
  font-size: 110px;
  margin-bottom: 50px;
}

h1 span {
  font-size: 48px;
  display:block;
}

a {
  color: #ffe7c4;
  font-weight: bold;
  position: absolute;
  bottom: 50px;
}

.left img:nth-of-type(1) {
  max-width: 80%;
  display: inline-block;
  position: relative;
  top: 20%;
  box-shadow: 30px #ffe8c5;
  position: relative;
  z-index: 2;
  transition: 0.03s transform ease-out;
  -webkit-transition: 0.03s transform ease-out;
}

.left img:nth-of-type(2) {
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 7%;
  transition: 0.03s transform ease-out;
  -webkit-transition: 0.03s transform ease-out;
}


.right .globalWrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.right p {
  line-height: 1.3em;
}

@media screen and (max-width: 1300px) {
  .left {
    text-align: center;
    float:none;
    width: 100%;
    background-color: #0e0e0e;
    height:100vh;
  }

  .right {
    float: none;
    width: 100%;
    background-color: #a81e23;
    height:100vh;
    padding-left:10%;
    padding-right: 10%;
    box-sizing:border-box;
  }
}


@media screen and (max-width: 600px) {
  h1 {
    font-size: 90px;
  }
}