.bravado-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

/* MOBILE / SMALL TABLETS */

@media (max-width: 768px) {
  .bravado-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .bravado-hero .subtext {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .bravado-hero .typewriter {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

/* EXTRA-SMALL DEVICES */

@media (max-width: 576px) {
  .bravado-hero {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .bravado-hero .typewriter {
    font-size: 1.25rem;
  }
}

/* allow the typewriter text to wrap */

.bravado-hero .typewriter {
  white-space: normal;
  word-wrap: break-word;
  hyphens: auto;
  /*optional: nicer hyphenation;*/
  overflow: visible;
}

/* extra-small tweaks so “Dominance.” won’t get chopped off */

@media (max-width: 576px) {
  .bravado-hero .typewriter {
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: 0;
    padding: 0 0.5rem;
  }
}

