html,
body {
  margin: 0;
  height: 100%;
  text-align: left;
}

body {
  color: var(--body-color);
}

#navBar {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.logoDiv {
  text-align: center;
  display: flex;
  min-height: 500px;
}

.mainLogo {
  width: 100%;
  height: auto;
  max-width: 650px;
  margin: auto;
  vertical-align: middle;
}

#tagLineDiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tagLine {
  font-size: 12px;
  color: #999;
  letter-spacing: 4px;
  font-weight: normal;
  line-height: normal;
  margin: 10px;
  font-family: var(--body-font);
  text-transform: uppercase;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.page-title {
  margin-bottom: 50px;
  text-align: center;
  text-transform: none;
}

.centerForText {
  margin: 0 20% 0 20%;
  line-height: 1.7em;
}

.maxWidth {
  max-width: 1200px;
}


textarea {
  border: 1px solid #ddd;
  border-color: #ffe8e8;
  background-color: transparent;
  box-shadow: none;
  padding-top: 20px;
  padding-left: 9px;
  min-height: 140px;
  color: #000000;
}

.contentDiv {
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  .contentDiv {
    margin-right: 15px;
    margin-left: 15px;
  }

  .logoDiv {
    min-height: 100px;
    /* reduce the container height */
  }

  .mainLogo {
    margin-top: 15px;
    max-width: 250px;
    /* reduce the max size */
  }

  .tagLine {
    font-size: 9px;
  }

  .page-title {
    margin-bottom: 20px;
    text-align: center;
  }
}