/* SF Pro Font Import */
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

/* Typography System */
:root {
  --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Headings */
  --heading-color: #FFF;
  --heading-size: 36px;
  --heading-weight: 700;
  --heading-line-height: normal;

  /* Buttons */
  --button-color: #222;
  --button-size: 21px;
  --button-weight: 700;
  --button-line-height: normal;

  /* Body text */
  --text-color: #FFF;
  --text-size: 21px;
  --text-weight: 400;
  --text-line-height: 136%; /* 28.56px */

  /* Input placeholder */
  --placeholder-color: #8A8A95;
}

/* Global font settings */
* {
  font-feature-settings: 'liga' off, 'clig' off;
}

html, body, #root {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: var(--font-family);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography classes */
.heading {
  color: var(--heading-color);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--heading-size);
  font-style: normal;
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
}

.button-text {
  color: var(--button-color);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--button-size);
  font-style: normal;
  font-weight: var(--button-weight);
  line-height: var(--button-line-height);
}

.body-text {
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: var(--text-weight);
  line-height: var(--text-line-height);
}
