.header {
  background: #fff;
  padding: 16px 24px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
  
.header img {
  height: 44px;
}
  
@media screen and (max-width: 500px) {
  .header {
    padding: 24px;
  }
}
  
@media screen and (max-width: 375px) {
  .header img {
    height: 32px;
  }
}