.maintenance {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.maintenance .maintenance-title {
  font-size: 10rem;
  line-height: 10rem;
  color: var(--main-text-color);
  font-weight: var(--font-weight-bolder);
  text-align: center;
  max-width: 75rem;
  margin-top: 7rem;
  margin-bottom: 1rem;
}

.maintenance .maintenance-description {
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  color: var(--placeholder-color);
  margin-bottom: 2rem;
}

.not-found-logo {
  display: flex;
  margin: 0 auto;
  padding-top: 3rem;
  justify-content: center;
}

.not-found {
  box-sizing: border-box;
  min-height: calc(100vh - 5rem);
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.not-found .not-found-title {
  font-size: 6rem;
  line-height: 6rem;
  color: var(--placeholder-color);
  font-weight: var(--font-weight-bolder);
  text-align: center;
  max-width: 75rem;
  margin-top: 7rem;
}

.not-found .not-found-description {
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  color: var(--placeholder-color);
  margin-bottom: 1rem;
  max-width: 45rem;
  text-align: center;
}

.internal-server-error {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.internal-server-error .internal-server-error-title {
  font-size: 6rem;
  line-height: 6rem;
  color: var(--main-text-color);
  font-weight: var(--font-weight-bolder);
  text-align: center;
  max-width: 75rem;
  margin-top: 5rem;
  margin-bottom: 0.5rem;
}

.internal-server-error .internal-server-error-description {
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  color: var(--placeholder-color);
  margin-bottom: 2rem;
  max-width: 45rem;
  text-align: center;
}

.internal-server-error-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--main-bg-color);
  max-width: 49rem;
  color: var(--placeholder-color);
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  text-align: center;
  margin-bottom: 2rem;
}

.internal-server-error-details-text {
  font-weight: var(--font-weight-bold);
}

.error-page {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.error-page .error-page-title {
  font-size: 6rem;
  line-height: 6rem;
  color: var(--main-text-color);
  font-weight: var(--font-weight-bolder);
  text-align: center;
  max-width: 75rem;
  margin-top: 15rem;
  margin-bottom: 0.5rem;
}

.error-page .error-page-description {
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  color: var(--placeholder-color);
  margin-bottom: 2rem;
  max-width: 45rem;
  text-align: center;
}

.not-found-animation {
  width: 100%;
  max-width: 90rem;
}

.not-found-content {
  margin-top: -18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-us-btn {
  height: 1.5rem;
}

/*Responsive*/
@media only screen and (max-width: 1366px) {
  .not-found .not-found-title {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

@media only screen and (max-width: 1200px) {
  .not-found-content {
    margin-top: -14rem;
  }
}

@media only screen and (max-width: 960px) {
  .not-found .not-found-title {
    max-width: 28rem;
  }
}

@media only screen and (max-width: 767px) {
  .not-found-content {
    margin-top: -12rem;
  }

  .not-found .not-found-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .not-found-description {
    padding: 0 1.5rem;
  }

  .internal-server-error .internal-server-error-title,
  .error-page .error-page-title {
    font-size: 4.5rem;
    line-height: 5rem;
  }

  .internal-server-error,
  .error-page {
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 540px) {
  .not-found .not-found-title {
    max-width: 18rem;
  }

  .not-found-content {
    margin-top: -10rem;
  }
}

@media only screen and (max-width: 480px) {
  .not-found-description {
    padding: 0 1rem;
  }

  .internal-server-error .internal-server-error-title,
  .error-page .error-page-title {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 2rem;
  }

  .internal-server-error,
  .error-page {
    padding: 1rem;
  }
}
