html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  font-family: "Open Sans", sans-serif;
}

html *,
body * {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html .landingPage,
body .landingPage {
  width: 100%;
  height: 100%;
  min-height: 300px;
  min-width: 300px;
  position: relative;
  background-position: right;
  background-attachment: fixed;
  background-size: cover;
}

html .landingPage::before,
body .landingPage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (orientation: portrait) {
  html .landingPage,
  body .landingPage {
    padding-right: 20%;
    background-image: url("hero-image-portrait.jpg");
  }
}

@media (orientation: landscape) {
  html .landingPage,
  body .landingPage {
    padding-right: 40%;
    background-image: url("hero-image-landscape.jpg");
  }
}

@media (min-width: 600px) {
  html .landingPage,
  body .landingPage {
    background-image: url("hero-image-landscape.jpg");
    background-position: bottom;
  }
}

@media (min-width: 960px) {
  html .landingPage,
  body .landingPage {
    min-height: 600px;
    min-width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 65%;
    background-image: url("hero-image-landscape.jpg");
    background-position: bottom;
  }
}

html .landingPage .heroTitle,
body .landingPage .heroTitle {
  margin: 0;
  z-index: 1;
  width: 100%;
  padding: 1.5rem;
  font-weight: 800;
  font-size: 2.75rem;
  position: relative;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  html .landingPage .heroTitle,
  body .landingPage .heroTitle {
    padding: 3rem;
  }
}

@media (min-width: 960px) {
  html .landingPage .heroTitle,
  body .landingPage .heroTitle {
    padding: 1.5rem;
    font-size: 2rem;
    text-align: center;
  }
}

html .landingPage .logo,
body .landingPage .logo {
  max-width: 60%;
  position: absolute;
  bottom: 15%;
  left: 4rem;
  z-index: 1;
}

@media (min-width: 600px) {
  html .landingPage .logo,
  body .landingPage .logo {
    left: 20%;
    max-width: 30rem;
  }
}

@media (min-width: 960px) {
  html .landingPage .logo,
  body .landingPage .logo {
    position: relative;
    display: block;
    bottom: auto;
    left: auto;
    max-width: 25rem;
  }
}