* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #06336E;
  padding: 1em 1.5em;
  height: 4.5em;
}

.logo {
  height: 2.25em;
}

.main {
  flex: 1;
  display: flex;
}

.image-panel {
  width: 45%;
  background-image: url("https://parking-page-website-branding.s3.us-west-2.amazonaws.com/background.png");
  background-size: cover;
  background-position: center;
}

.content-panel {
  width: 55%;
  padding: 3em;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.domain-title {
  font-size: 3em;
  font-weight: 700;
  color: #3C3E52;
  margin-bottom: 12px;
}

.domain-subtitle {
  font-size: 1.25em;
  font-weight: 600;
  color: #2e2f3e;
  margin-bottom: 1.25em;
}

.domain-text {
  font-size: .925em;
  font-weight: 200;
  line-height: 1.4;
  color: #3C3E52;
}

.footer {
  background-color: #06336E;
  color: #FFFFFF;
  text-align: center;
  padding: .625em;
  font-size: .925em;
  min-height: 5.5em;
}

.footer a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: underline;
  margin: .5em 0;
}

@media screen and (max-width: 900px) {
  .image-panel {
    width: 100%;
    margin-top: 30vh;
    height: calc(70vh - 9.5em);
  }

  .content-panel {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.5em;
    padding: 1.5em;
  }

  .domain-title {
    font-size: 2rem;
  }

  .domain-subtitle {
    font-size: 1em;
  }

  .domain-text {
    font-size: .875em;
  }
}