/* @font-face {
  font-family: "JDG Custom";
  src: url("/assets/fonts/inter-tight-latin-100-normal.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: "JDG Custom";
  src: url("/assets/fonts/inter-tight-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JDG Custom";
  src: url("/assets/fonts/inter-tight-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "JDG Custom";
  src: url("/assets/fonts/CadLineFont-Thin-100.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JDG Custom";
  src: url("/assets/fonts/CadLineFont-Regular-400.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
} */

body {
  font-family:
    "JDG Custom",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;

  margin: 0 auto;
  padding: 0;
}

h1 {
  font-family:
    "JDG Custom",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
}

.text-cell {
  /* Stretch to fill the whole grid cell */
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  height: 100%;

  /* "90% is padding" -> 5% padding on all sides leaves 90% content area */
  padding: 5%;
  box-sizing: border-box;

  /* Text inside starts top-left */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Top */
  align-items: flex-start;
  /* Left */

  /* Reset max constraints since we use padding now */
  max-width: none;
  max-height: none;
}

.text-center {
  /* Stretch to fill the whole grid cell */
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  height: 100%;

  /* "90% is padding" -> 5% padding on all sides leaves 90% content area */
  padding: 5%;
  box-sizing: border-box;

  /* Text inside starts top-left */
  display: flex;
  flex-direction: column;

  /* Reset max constraints since we use padding now */
  max-width: none;
  max-height: none;

  justify-content: center;
  align-items: center;
}

.text-center h1 {
  margin: 0;
}