* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0px red solid;
  font-family: var(--font-family-primary);
  font-kerning: auto;
  background-color: var(--background-primary);
}

body {
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: center;      /* Center vertically */
  height: 100vh;            /* Make the body fill the entire viewport height */
  margin: 0;                /* Remove default margin */
}

:root {
  /*color */
  --white: #ffffff;
  --black: #111111;
  --grey-50: #f5f5f5;
  --grey-100: #e3e3e3;
  --grey-200: #BDBDBD;
  --grey-300: #9E9E9E;
  --grey-400: #757575;
  --grey-500: #616161;

  /*color semantics*/
  --background-primary:var(--white);
  --foreground-primary:var(--black);
  --border-primary:var(--grey-100);

  --background-primary-button:var(--black);
  --foreground-primary-button:var(--white);

  --background-secondary:var(--grey-200);
  --foreground-secondary:var(--grey-500);

  --background-ternary:var(--grey-50);
  
  /*color semantics dark*/
  --dark-background-primary:var(--black);
  --dark-foreground-primary:var(--white);
  
  --dark-background-secondary:var(--grey-500);
  --dark-foreground-secondary:var(--white);

  /*typography*/
  --font-family-primary: "Inter", sans-serif;
  --font-family-secondary: "Inter", sans-serif;
  
  font-size: 14px;  
  --font-size-xs: 0.694rem;
  --font-size-sm: 0.833rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.2rem;
  --font-size-xl: 1.44rem;
  --font-size-2xl: 1.728rem;
  --font-size-3xl: 2.074rem;
  --font-size-4xl: 2.488rem;
  --font-size-5xl: 2.986rem;

  --font-weight-thin: 300;
  --font-weight-regular: 500;
  --font-weight-bold: 600;
  --font-weight-xbold: 800;
  --font-weight-2xbold: 900;

  /*spacing*/
  --space-2xs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 28px;
  --space-3xl: 36px;
  --space-4xl: 40px;
  --space-5xl: 80px;

  /*rounding*/
  --round-2xs: 1px;
  --round-xs: 2px;
  --round-sm: 4px;
  --round-md: 8px;
  --round-lg: 12px;
  --round-xl: 16px;
  --round-2xl: 20px;
  --round-3xl: 32px;
  --round-round: 999px;

  /*shadows*/
  --shadow-primary: 0 var(--space-xs) var(--space-md) var(--border-primary);
  --dark-shadow-primary: 0 var(--space-xs) var(--space-md) var(--dark-background-primary);
  --dark-shadow-secondary: 0 var(--space-xs) var(--space-md) var(--dark-background-secondary);
}

.text-headline {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
}
.text-subhead {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-regular);
}
.text-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-regular);
}
.text-subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-regular);
}
.text-caption {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
}
.text-label {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
}
.text-body {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
}
.text-small {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
}
.text-bold {
  font-weight: var(--font-weight-bold);
}

button {
  background-color: var(--background-primary-button);
  color: var(--foreground-primary-button);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--round-md);
  border: none; /* Remove any borders */
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  cursor: pointer;
  outline: none; /* Remove default outline */
}

button:focus {
  outline: none; /* Ensure no outline when button is focused */
}

/* Center the Netlify Identity button */
[data-netlify-identity-button] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-primary-button);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--round-md);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  outline: none;
  color: var(--foreground-primary-button); /* Text color */
  text-decoration: none; /* Remove underline if any */
}

/* Hide the default link Netlify Identity inserts */
[data-netlify-identity-button] a {
  display: none;
}

@media (max-width: 768px) {
  :root {
    font-size: 14.4px;
  }
}