html,
body {
  margin: 0;
  padding: 0;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #eee;
  z-index: 99;
  transition: all 1s ease;
}

.splash__text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 3.5vw;
  width: 100%;
  font-family: "NeueHaasGrotesk", "HelveticaNeue", Helvetica, Arial, Verdana,
    sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

.hide-intro #splash {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 689px) {
  .intro-logo {
    padding: 30px;
    bottom: 80px;
  }

  .splash__text {
    font-size: 6vw;
  }
}
@media screen and (min-width: 690px) and (max-width: 994px) {
  .intro-logo {
    padding: 37px;
    top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 995px) and (max-width: 1439px) {
  .intro-logo {
    padding: 45px;
    top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .intro-logo {
    padding: 60px;
    top: 0;
    height: 100%;
  }
}
