@font-face {
  font-family: Graphik;
  src: url("./assets/Graphik-Regular-App.ttf");
}

@font-face {
  font-family: Graphik;
  src: url("./assets/Graphik-Medium-App.otf");
  font-weight: 500;
}

:root {
  --purple20: #ECD9FF;
  --purple70: #610F9B;
  --purple-primary: #820AD1;
  --black: #000000;
  --white: #FFFFFF;
  --gray-inactive: rgba(0,0,0, 0.3);
  --gray-text: rgba(0, 0, 0, 0.64);
}

html,
body {
  font-family: Graphik, sans-serif;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

main {
  flex: auto;
}

.main-tag {
  background: var(--purple20);
  color: var(--purple70);
  font-size: 12px;
  font-weight: 500;
  padding: 4px;
  border-radius: 3px;
}

.main-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.03em;
  font-feature-settings: "ss05" on;
  margin: 16px 0;
  color: var(--black);
}

.main-content {
  font-size: 18px;
  line-height: 132%;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--gray-text);
}

.main-content span {
  font-weight: 500;
}

footer {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 0;
}

footer .button {
  text-decoration: none;
  text-align: center;
  width: 100%;
  border: none;
  font-weight: 500;
}

#go-to-app {
  display: inline-block;
  font-size: 18px;
  border-radius: 100px;
  background-color: var(--purple-primary);
  color: var(--white);
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

#non-client {
  font-size: 16px;
  color: var(--purple-primary);
  padding-top: 16px;
  padding-bottom: 16px;
}

#non-client.disabled {
  color: var(--gray-inactive);
}

@media (min-width: 1024px) {
  footer {
    display: none;
  }

  body {
    width: 60%;
  }
}