main {
    --bg: #1d1d25;
    --color: #3ac6f6;
  
    width: 100svw;
    height: 100svh;
  
    display: flex;
    flex-direction: column;
    /* Place the contained item in the centre of the screen */
    align-items: center;
    justify-content: center;
  
    background-color: var(--bg);
  }
  
  /* Prefers light */
  @media (prefers-color-scheme: light) {
    main {
      --bg: #fafaff
    }
  }
  
  * {
    font-family: "Hack";
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }
  
  a {
    box-sizing: content-box;
    background-color: var(--bg);
    color: var(--color);
    padding: 0.8rem 1.5rem;
    border-radius: 0rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  a:visited {
    color: var(--color);
  }
  
  a:hover {
    border-bottom-width: 0.5rem 0rem;
    color: var(--bg);
    border-radius: 1rem;
    background-color: var(--color);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0.8rem 1.5rem;
  }

  p {
    color: var(--color);
    padding: 0.2rem 0.5rem;
  }

  p a {
    padding: 0.4rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color);
  }
  p a:hover {
    padding: 0.4rem 0.5rem;
  }
  
  h1 {
    /* Clamp the font size so it adjusts with the window width (to account for mobile devices */
    font-size: clamp(1.5rem, 5svw, 3rem);
  }