html {
    box-sizing: border-box;
    height: 100%;
}
*:not(img) {
    box-sizing: inherit;
    outline: none;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    background: #339933;
    color: #ffffff;
    font-family: 'Archivo Black', sans-serif;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Media */
.intro-media {
    width: 45vw;

    left: auto !important;
    right: -20%;
}

/* Info */
.info {
    position: absolute;
    top: 10%;
    left: 5%;
}
.info img {
    max-width: 265px;
    margin-bottom: 20px;
}
.intro-wrapper {
    transform: translate(-50%, -50%);

    position: fixed;
    top: 50%;
    left: 50%;
}
h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}
h2 {
    font-size: 80px;
    line-height: 0.75;
}
.link-to-form {
  background: #fff;
  color: #339933;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
  padding: 15px 45px;

  position: fixed;
  bottom: 5vw;
  left: 50%;
}
.link-to-form:hover {
  box-shadow: 0 1px 20px -1px #484848;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.intro-text--typing::after {
    content: '|';
    animation: blink 0.8s infinite;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  html {
    overflow: hidden;
  }
    .intro-media {
        width: 75vw;
        top: 20% !important;
    }
}
@media screen and (min-width: 0) and (max-width: 767px) and (orientation: landscape) {
    .intro-media {
        width: 55vw;
        top: 20% !important;
    }
    .intro-wrapper {
        top: 65%;
        left: 45%;
    }
}
