.bravado-hero {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.subtext {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #bbb;
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.typewriter {
  font-size: 2rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #C9B037;
  letter-spacing: 1px;
  width: 42ch;
  margin: 0 auto;
  animation: typing 4s steps(50, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 42ch;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #C9B037;
  }
}

