/*
  @font-face
*/

@font-face {
  font-family: "PlusJakartaSans";
  font-weight: 400;
  src: url('assets/fonts/PlusJakartaSans-Regular.woff2');
}

@font-face {
  font-family: "PlusJakartaSans";
  font-weight: 700;
  src: url('assets/fonts/PlusJakartaSans-Bold.woff2');
}

/*
  variables
*/

:root {
  --bg: #fcfcfc;
  --bg-elevated: #ffffff;
  --bg-muted: #f3f3f3;
  --text: #2e2e2e;
  --text-muted: #595959;
  --border: #dddddd;
  --accent: #9675dd;
  --shadow-soft: 0 12px 35px rgba(46, 46, 46, 0.08);
  --shadow-card: 0 18px 40px rgba(46, 46, 46, 0.1);
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #2e2e2e;
    --bg-elevated: #373737;
    --bg-muted: #3f3f3f;
    --text: #fcfcfc;
    --text-muted: #d8d8d8;
    --border: #505050;
    --accent: #9675dd;
    --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 20px 48px rgba(0, 0, 0, 0.42);
  }
}

/* 
  http://meyerweb.com/eric/tools/css/reset/ 
  v2.0 | 20110126
  License: none (public domain)
*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (min-width: 1445px) {
  html {
    font-size: 118%;
  }
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'PlusJakartaSans' ,sans-serif;
  line-height: 1.15;
  width: 100vw;
  height: 100vh;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}

/*
  main styles
*/

header {
    position: relative;
    font-size: .875rem;
    font-weight: 700;
    padding: 2rem;

    #home-link {
      color: inherit;
      font-size: 1rem;
    }

    .flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }

  nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  nav,
  .auth-actions {
    display: flex;
    gap: 2rem;

    a:hover {
      color: var(--accent)
    }
  }

  #hero {
    padding: 3rem 2rem 0 2rem;
    margin-bottom: 7.5rem;
    text-align: center;

    h1 {
      color: var(--text);
      font-size: 3rem;
      max-width: 34rem;
      margin: 0 auto 2rem auto;
    }

    p {
      color: var(--text-muted);
      font-size: 1.25rem;
      margin-bottom: 3rem;
      opacity: .8;
    }

    a {
      color: var(--bg);
      background: var(--accent);
      padding: 1rem 2rem;
      border-radius: 100px;
    }
  }
  