@charset "utf-8:;

  html    {
          background: #000000;
  }

       body {
           display: flex;
           font: 90%/1.2 Verdana, Arial, Helvetica, sans-serif;
           justify-content: center;
           align-items: center;
           min-height: 100vh;
           margin: 0;
           font-family: Arial, sans-serif;
           background-color: black; /* Black background */
           color: white; /* Default text color */
       }

      /* ~~ Element/tag selectors ~~-- */
      ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists.
                For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
                Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
          padding: 0;
          margin: 0;
      }
      h1, h2, h3, h4, h5, h6, p {
          margin-top: 0px;         /* removing the top margin gets around an issue where margins can escape from their containing block. */
                                   /*   The remaining bottom margin will hold it away from any elements that follow. */
          margin-bottom: 4px;
          padding-right: 15px;
          padding-left: 15px;   /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, */
                                /*   gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
          text-align: center;
          font: Calisto MT;
      }
      h2 {
          text-decoration: underline;
      }

       nav {
           position: fixed;
           top: 0;
           width: 100%;
           background-color: #333; /* Background color of the menu */
           padding: 10px 0;
           text-align: center;
           box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a slight shadow */
       }
       nav .nav-item a {
           /* color: blue; */
           font-size: 18px;
       }
        .nav-item {
            display: inline-block;
            position: relative;
        }
        .nav-item a {
            color: white;
            text-decoration: none; 
/*            text-decoration: underline;  */
            margin: 0 15px;
            font-size: 14px;
        }
        .nav-item:hover .dropdown {
            display: block;
/*            text-decoration: underline;  */
        }
        .nav-item a:hover {
            text-decoration: underline;
            /* Craig - I didn't like the way elements jumped around
                 by change font size/weight  */
            /* font-size: 16px; */
            /* font-weight: bold; */
        }
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #444;
            min-width: 150px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .dropdown a {
            display: block;
            padding: 10px;
            color: white;
            text-align: left;
        }
        .dropdown a:hover {
            background-color: #555
        }
       nav a {
           color: white;
           text-decoration: none;
           margin: 0 15px;
           font-size: 18px;
           font-family: Arial, sans-serif;
       }
       nav a:hover {
           text-decoration: underline;
       }
       div {
           font-size: 14.4px;
           color: white;
       }
       img {
           max-width: 100%;
           height: auto; /* Maintains aspect ratio */
       }
/*       .navImage img:hover {  */
         .navImage:hover { 
           border: 2px solid grey;
/*           transform: scale(1.05,1.05); 
           transition: 0.2s; 
           overflow: hidden;  /* Hide scrollbars */
       }
       .content {
           margin-top: 30px; /* Offset for the fixed menu */
           background: #000000;
           padding: 10px 200px;
           width: 700px;
           float: left;
           font-size: 14px;
       }
       .tester {
          color: blue;
          border: 3px solid white;
       }
       .tester:hover {
          color: blue;
          border: 3px solid red;
       }

  /* ~~ Miscellaneous float/clear classes ~~ */
  .fltrt {  /* this class can be used to float an element right in your page. The floated elment right in your page. 
               The floated element must precede the element it should be next to on the page. */        
      float: right;
      margin-left: 8px;
  }
  .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
  }
  .clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
  }

  .clearfix {  /* lets divs containing images larger than surrounding text to size to fit img.  */
        overflow: auto;   /* maybe remove this. trying to hide scrollbars. */
  }
  .txtcenter {
        display: block;
        text-align: center;
  }

  /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
  /* header, section, footer, nav, article, figure { */
  header, section, footer, article, figure {
        display: block;
        text-align: left;
  }


  /* Craig - settings for Preformatted text elements */
  pre {
        text-align: justify;
        font-size: 14px;
        font-family: "Courier New", Courier, monospace;
        font-weight: normal;
  }
