html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 17px;
  word-wrap: break-word;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  color: #4e5a64;
  position: relative;
}

@supports (min-height: 100vh) {
  html,
  body {
    min-height: 100vh;
  }
}

body > * {
  width: 50%;
}

body .imageblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}
body .imageblock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .contentblock {
  background-color: #fefefe;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  position: relative;
  min-height: 100vh;
}

body .contentblock header {
  padding: 20px 40px;
}

body .contentblock main {
  padding: 20px 40px;
}

body .contentblock main p {
  width: 70%;
}

body .contentblock footer {
  padding: 20px 40px;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 30px;
  font-weight: 300;
}

p {
  line-height: 1.6em;
}

a {
  color: #4e5a64;
  text-decoration: none;
}

.button {
  font-size: 14px;
  background-color: #eb008b;
  padding: 10px 15px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
}

address {
  font-style: normal;
  margin-bottom: 10px;
}

.bold {
  font-weight: 700;
}

@media screen and (max-width: 1454px) {
  body .contentblock header {
    padding: 20px 30px;
  }

  body .contentblock footer {
    padding: 20px 30px;
    max-width: 100%;
  }

  body .contentblock main {
    max-width: 100%;
    padding: 20px 30px;
  }

  body .contentblock main p {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  body>* {
    width: 100%;
  }

  body .imageblock {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    height: 100%;
  }

  @supports (min-height: 100vh) {

    html,
    body {
      height: auto;
      min-height: 100vh;
    }
  }

  body .contentblock {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    min-height: 100vh;
  }

  body .contentblock main {
    max-width: 100%;
  }

  body .contentblock main p {
    margin: 0 auto 10px;
  }

  body .contentblock footer {
    max-width: 100%;
  }
}