html,
body {
  background-color: #ffffff;
  margin: 0;
  /* font-family: ; */
}

.header_wrapper {
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0 1px 0 #ededed;
}

.header {
  max-width: 1200px;
  height: 40px;
  margin: 0 auto;
}

.header img {
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.content_wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
}

.content img {
  display: none;
  width: 400px;
  object-fit: cover;
}

/* Show image only on bigger screens */
@media (min-width: 768px) {
  .content img {
    display: block;
  }
}

.text_wrapper {
  padding: 15px 30px;
  background-color: #d4652d;
  display: flex;
  align-items: center;
}

.text {
  padding: 15px;
  background-color: #ffffff;
}

.footer_wrapper {
  background-color: #5a6065;
}

.footer {
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px 15px;
  color: #f5f5f5;
}

.footer p {
  font-size: 12px;
}

.footer h2 {
  font-size: 14px;
}

.footer hr {
  margin: 0 15px;
  background-color: #3f4045;
  color: #3f4045;
  border-color: #3f4045;
}

.footer a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.page-wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

/* @font-face {
  font-family: ;
  src: url(font/)
      format('truetype');
} */
