@font-face {
    font-family: 'Inter';
    src: url('/assets/Inter.var.woff2') format('woff2 supports variations'), url('/assets/Inter.var.woff2') format('woff2-variations');
    font-weight: 100 1000;
}

:root {
    --color-jeangrey-1: #eee;
    --color-jeangrey-2: #d4d4d4;
    --color-jeangrey-3: #808283;
    --color-jeangrey-4: #414446;
    --color-jeangrey-5: #2c2f31;
    --color-jeangrey-6: #1c1c1c;
    --color-jedi: #fff;
    --color-sith: #000;
    --font-weight-light: 300;
    --font-weight-regular: 500;
    --font-weight-semibold: 700;
    --font-weight-bold: 900;
    --t: ease 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font: 16px/25px Inter, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  text-align: center;
  padding: 64px 24px;
}

h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 24px;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 24px;
}

h3, h4 {
  font-size: 14px;
  font-weight: 800;
  line-height: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

p { margin-bottom: 24px; }

ul { margin: 0 0 24px 24px; }

ul ul { margin-bottom: 4px; }

a { color: #000; }

/* =NAV
-------------------------------------------*/

nav {
  background-color: #000;
  border-bottom: 2px solid var(--color-jeangrey-6);
  text-align: right;
  padding: 16px;
  width: 100%;
}

nav ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0;
  padding: 0;
}

nav a {
  border: 2px solid var(--color-jeangrey-5);
  border-radius: 999px;
  color: var(--color-jeangrey-2);
  display: block;
  font-size: 16px;
  padding: 12px 16px;
}

nav a:hover, nav a:focus {
  color: var(--color-jeangrey-2);
  transition: color 0.5s ease;
}

nav li.login a {
  background-color: var(--color-jeangrey-5);
  border-color: var(--color-jeangrey-5);
}

@media screen and (min-width: 600px) {
  nav ul { justify-content: flex-end; }
}

/* =LAYOUT
-------------------------------------------*/

header, main, footer {
  margin: 0 auto 24px auto;
  max-width: 800px;
  text-align: left;
  width: auto;
}

header {
  margin-bottom: 64px;
  text-align: center;
}

header img {
  height: 100px;
  margin-bottom: 16px;
  width: 100px;
}

table {
  border: 1px solid #eee;
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
}

th, td {
  border: 1px solid #eee;
  padding: 16px;
  vertical-align: top;
}

/* section-specific stuff */

body.faqs h2 {
  border-bottom: 2px solid #000;
  margin: 40px 0;
  padding-bottom: 8px;
}

body.faqs h3 {
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: none;
}

body.faqs p {
  color: var(--color-jeangrey-4);
  margin-bottom: 40px;
}
