body {
  margin: 0;
}
.header {
  background-color: #f5eee1;
  padding: 30px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.title img {
  width: 275px;
  margin: auto;
  display: block;
}
.requirement_inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #444;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  max-width: 635px;
  margin: auto;
}
.requirement_title p {
  font-size: 16px;
  font-weight: bold;
  line-height: 200%;
  margin: 0;
}
.requirement_list {
  padding: 0;
  margin: 0 0 0 20px;
  list-style-type: disc;
  font-size: 14px;
  line-height: 150%;
}
.requirement_annotation {
  font-size: 10px;
  line-height: 180%;
}
.content p {
  color: #f37022;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  margin: 0 0 10px;
  line-height: 124%;
}
.content img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .header {
    padding: 30px 50px 70px;
  }
  .title img {
    width: 335px;
  }  
  .content p,
  .requirement_title p {
    font-size: 20px;
  }
}

