.errorPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  .logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 4rem;

    .logoImage {
      width: 100%;
      height: auto;
    }
  }

  .content {
    text-align: center;

    .icon {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
      svg {
        width: 80px;
        height: 80px;
        path,
        circle,
        g {
          fill: var(--red);
        }
      }
    }

    .title {
      font-size: 32px;
      color: var(--dark-purple);
      margin-bottom: 1rem;
    }

    .message {
      font-size: 22px;
      font-weight: 400;
      line-height: 1.5;
      margin: 0;
      padding: 0;
    }

    .supportLink {
      color: var(--blue);
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .footer {
    margin-top: 10rem;
    .copyright {
      margin: 0;
      font-size: 12px;
      color: var(--purple);
    }
  }
}
