.hero-section {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.logo {
  width: 60vw;
}

.top-bar {
  background-color: #103a64;
  height: 30px;
  position: absolute;
  inset: 0% 0% auto;
}

.strap-line {
  z-index: 10;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 991px) {
  .logo {
    width: 80vw;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 100vw;
  }
}


