* {
  margin: 0;
  padding: 0;
  font-family: "Inter";
  font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  background: #e3e3e3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 52px;
    letter-spacing: -5px;
    margin: 0;
    margin-bottom: 1.4rem;
    color: #000;
    text-align: center;
    line-height: 0.8;

    small {
      display: block;
      letter-spacing: 0;
      font-size: 60%;
    }
  }

  p {
    max-width: 380px;
    text-align: center;
    font-size: 1rem;
    margin: 0.2rem;
  }
}

.footer {
  background: #000;
  padding: 12px 0;

  p {
    text-align: center;
    color: #fff;

    a {
      color: #f58863;
      text-decoration: none;
      transition: all ease-in-out 0.4s;

      &:hover {
        color: #fff;
      }
    }
  }
}
