/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
    @font-face
    {
      font-family: vcr-mono;
      src: url('/VCR_OSD_MONO_1.001.ttf');
    }
      body {
        background-image: url("Images and Gifs/bckgrnd.jpg#");
        background-repeat: no-repeat; /* Prevents the image from repeating */
        background-size: cover;      /* Scales the image to cover the entire container */
        background-attachment: fixed; /* Keeps the image fixed while scrolling */
        color:white;
        font-family: vcr-mono;
      }
        #pages{
        position:fixed; 
      }
        #topics{
        color:red; 
      }
        .link-container {
        display: flex;
        justify-content: center; /* Optional: centers the links horizontally */
        gap: 15px; /* Optional: adds space between links */
      }

      .link-container a {
        /* Optional: further styling like color, padding, etc. */
       text-decoration: none;
       padding: 5px 10px;
      }
        #Transition{
        color:orange;
      }