.main-header {
  background: var(--primary-color);
}

.thank-you {
  margin-top: 120px;
  text-align: center;
}
.thank-you h1 {
  font-weight: 200;
  text-transform: capitalize;
  font-size: 4rem;
}
.thank-you p {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--font-color);
  margin: 10px auto 30px;
  max-width: 800px;
  width: 90%;
  line-height: 30px;
}
.thank-you img {
  max-width: 500px;
  width: 60%;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

@media screen and (max-width: 1023px) {
  .thank-you {
    margin-top: 80px;
  }
  .thank-you h1 {
    font-size: 50px;
  }
  .thank-you p {
    font-size: 18px;
    line-height: 22px;
  }
  .thank-you img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .thank-you h1 {
    font-size: 42px;
  }
  .thank-you p {
    font-size: 16px;
  }
}/*# sourceMappingURL=thankyou.css.map */

.dark-theme.page-template-thank-you .main-header {background-color: #222529;}