:root {
    --primary-color: #2a2add;
    --background-color: #00001c;
    --background-color2: #ffffff42;
  }
  
  @font-face {
    font-family: 'Dot-Font';
    src: url('../fonts/dot-font/dot-font.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: var(--background-color);
    font-family: sans-serif;
  }
  
  /* Header as a 3-column grid */
  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;               /* ensure the row fills full height */
    align-items: center;                   /* vertical-center grid items */
    width: 96%;
    padding: 0 10px;
    margin: 2% auto 0;                     /* auto-center block horizontally */
    height: 60px;
    background-color: var(--background-color2);
    border-radius: 5px;
  }
  
  /* Logo on the left */
  .nav-logo {
    justify-self: start;
    color: white;
    font-family: 'Dot-Font', sans-serif;
  }
  
  /* Links in the middle, stretched and centered */
  .nav-links {
    justify-self: center;
    align-self: stretch;                   /* fill the full 60px height */
    display: flex;
    align-items: center;                   /* vertically center the <a> tags */
    justify-content: center;               /* horizontally center them */
    gap: 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'Dot-Font', sans-serif;
  }
  
  /* Button on the right */
  .nav-button {
    justify-self: end;
  }
  
  .primary-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 30px;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  