html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-align: center;
}



.intro {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}


// Begin intro styling

.intro-text-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  
  p {
    color: #ffffff;
    margin: 0;
    font-size: 3em;
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 50%;
    color: hsla(0,0,0,0);
    style: preserve-3d;
  }
  
  span {
    display: inline-block;
    color: hsla(0,0%,0%,0);
    transform-style: preserve-3d;
    transform: translate3d(0,0,0);
  }
}



