:root {

  --background: #fcfcfc;
  --card-background: #f4f3f2;
  --border: #e4e2e0;
  --text-dark: #1a1a1a;
  --text-light: #909090;

  --primary-dark: #5a4fcf;
  --primary: #fdebed;
  --primary-light: #9b8cff;

}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  height: 100vh;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  margin: 0;
  min-height: 100%;
}

h1 {
  font-family: 'Geist SemiBold', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

h2 {
  font-family: 'Geist Bold', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
}

h3 {
  font-family: 'Geist Medium', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

h4 {
  font-family: 'Geist Regular', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  margin-top: 0;
}

p {
  font-size: 1rem;
  font-family: 'Geist Light', Arial, Helvetica, sans-serif;
  margin-top: 0
}

button,
a,
label,
li {
  font-size: 1rem;
  font-family: 'Geist ExtraLight', Arial, Helvetica, sans-serif;
}

strong {
  font-family: 'Geist Medium', Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem;
}

@media screen and (min-width:769px) {
  h2 {
    font-size: 3rem;
  }
}