*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    width: 100%;
    height: 100%;
  font-family: "Roboto Condensed", sans-serif;
}

.bannerWrapper{
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items:center;
  justify-content:center;
  font-size: 10rem;
  color: white;
  background: rgb(38, 38, 38);
  letter-spacing: 35px;
}

@media(min-width: 400px) and (max-width: 600px) {
  .bannerWrapper{
    font-size: .5rem;
    letter-spacing: 15px;
    width: 100%;
    height: 100%;
  }
}