header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF3D9;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
}

.header-logo {
  width: 100px;
}

.header-text-container {
  margin-left: 12px;
  display: block;
  color: #DD241B;
}

.header-name {
  display: block;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 8px;
}

.header-address {
  display: block;
  font-size: 18px;
}

@media only screen and (min-width: 700px) {
  .header-container {
    width: 600px;
  }

  .header-logo {
    width: 150px;
  }

  .header-text-container {
    margin: 24px;
  }

  .header-name {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .header-address {
    font-size: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-container {
    width: 1200px;
  }

  .header-logo {
    width: 150px;
  }

  .header-text-container {
    margin: 24px;
  }

  .header-name {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .header-address {
    font-size: 40px;
  }
}

