/* 
  These styles are used on the error page when JavaScript is disabled in the browser and on the CloudFlare error pages.
*/

.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .wrapper {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .wrapper {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    width: 1170px;
  }
}

.error-content {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding-top: 90px;
}

@media (max-width: 768px) {
  .error-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.error-text {
  display: flex;
  flex-direction: column;
  flex-basis: 45%;
}

.logo-link {
  margin-bottom: 8px;
}

.error-text h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 16px;
  margin-top: 0;
}

.error-text p {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.25px;
  color: #303a46;
}

.error-text a {
  color: #3572af;
  text-decoration: none;
}

.error-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;

  @media (max-width: 768px) {
    margin-left: 0;
  }
}
