header {
  background-image: url(../images/desktop/image-header.jpg);
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__title {
  color: white;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.8rem;
  margin-top: 30vh;
  margin-bottom: 10vh;
}

@media screen and (max-width: 900px) {
  .header__title {
    font-size: 3rem;
    text-align: center;
  }
}

@media screen and (max-width: 700px) {
  .header__title {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  header {
    background-size: cover;
    background-repeat: no-repeat;
  }
}
