* {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

header .catchcopy {
  width: 100%;
  background-color: orange;
  color: #fff;
  text-align: center;
  font-size: 1vw;
  font-weight: 600;
}

header .title {
  width: 100%;
  height: auto;
  padding: 2vw 0 0;
}

header .title img {
  display: block;
  width: 20%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 10vw;
}

header h2 {
  text-align: center;
  font-size: 2.5vw;
  color: red;
  font-weight: 700;
}

@media screen and (orientation: portrait) {
  header .catchcopy {
    font-size: 2vw;
  }

  header .title {
    padding: 3vw 0 0;
  }

  header .title img {
    width: 40%;
    border-radius: 20vw;
  }

  header h2 {
    font-size: 4vw;
  }
}
