body {
  font-family: futura-pt, sans-serif;
  font-weight: 100;
  color: black;
}

/*FadeIn*/
.fadeIn {
  font-size: 4em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

.fadeIn span {
  animation: fadeEffect 12s linear infinite 0s;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.fadeIn span:nth-child(2) {
  animation-delay: 2s;
}

.fadeIn span:nth-child(3) {
  animation-delay: 4s;
}

.fadeIn span:nth-child(4) {
  animation-delay: 6s;
}

.fadeIn span:nth-child(5) {
  animation-delay: 8s;
}

.fadeIn span:nth-child(6) {
  animation-delay: 10s;
}

/*FadeIn Animation*/
@keyframes fadeEffect {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 0;
    transform: translateY(0);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.section--header {
  /* border: 2px solid red; */
  padding-top: 3rem;
  text-align: center;
}

.splash-logo {
  background-color: #000 !important;
  display: inline-block;
  font-size: 3em;
  font-weight: 500;
  padding: .25em .5em;
}

.section--main {
  text-align: center;
  padding-top: 1rem;
  /* border: 2px solid green; */
}

.section--main p {
  letter-spacing: 0.07em;
  margin-bottom: -12px;
  padding: 1em;
}

#tagline {
  padding-top: 12px;
}

.section--footer {
  text-align: center;
  /* border: 2px solid blue; */
}

.section--footer a {
  color: black;
}

.section--footer a:hover {
  color: #333;
}

.bg-dark--splash {
  background-color: #000 !important;
  color: white;
  display: inline-block;
  letter-spacing: .25em;
  padding: 1em 2em;
  text-transform: uppercase;
  margin-top: 7rem;
}

.section--footer {
  /* padding-top: 6rem; */
}

@media only screen and (min-width: 800px) {}

@media only screen and (min-width: 1000px) {

  .section--main {
    font-size: 200%;
  }

  .section--main p {
    margin-bottom: -75px;
  }

  .bg-dark--splash {

    padding: 1em 2em;
    margin-top: 12rem;
  }

  .section--footer {
    padding: 14em 8em 0 8em;
  }

}
