/* 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." */

 
            :root {
                --header-image: url('about/banner.png');
                --body-bg-image: url('about/safari.png');
  
  
                 /* colors */
                --content: #006624;
            }
  
             @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }
  
             @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
                font-weight: bold;
            }
  
             @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
                font-style: italic;
            }
  
             @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }
  
  @font-face {
    font-family: "Arcade"; 
    src: url("/fonts/jmh-arcade.arcadeug-regular.ttf") format("truetype");
}
@font-face {
font-family: PixelO;
    src: url('/fonts/PixelOperator-Bold.ttf')  format("truetype");
}
@font-face {
font-family: VCR;
    src: url('/fonts/VCR.ttf')  format("truetype");
}
@font-face {
font-family: Minecraft;
    src: url('/fonts/Minecraft.ttf')  format("truetype");
}
  
             body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #000000;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #000000;
                cursor: url("https://cursors2.totallyfreecursors.com/thumbnails/lovebird.gif"), auto;
                
                background-image: var(--body-bg-image);
                  background-repeat: no-repeat;
                  background-size: cover;
                  background-attachment: fixed;
            }

           * {
                box-sizing: border-box;
            }
  

            #container {
                max-width: 1100px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }
  
             #container a {
                color: #BE1919;
                font-weight: bold;
                cursor: url("https://cursors2.totallyfreecursors.com/thumbnails/parakeet.gif"), pointer;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
  
             #header {
                width: 100%;
                background-color: #ff9999;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

           /* navigation section!! */
            #navbar {
                height: 40px;
                /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fd9ba6+0,fc8a95+50,fc7881+51,f9645f+100 */
background: #fd9ba6; /* Old browsers */
background: -moz-linear-gradient(top,  #fd9ba6 0%, #fc8a95 50%, #fc7881 51%, #f9645f 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #fd9ba6 0%,#fc8a95 50%,#fc7881 51%,#f9645f 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #fd9ba6 0%,#fc8a95 50%,#fc7881 51%,#f9645f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd9ba6', endColorstr='#f9645f',GradientType=0 ); /* IE6-9 */

                background-color: #ff9999;
                /* navbar color */
                width: 100%;
                
            }
  
             #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
                font-size: large;
                
            }
  
             #navbar li {
                padding-top: 10px;
            }
  
            /* navigation links*/
            #navbar li a {
                color: #C11543;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                font-family: VCR;
                /* this removes the underline */
            }
  
             /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #ff0080;
                text-decoration: underline;
            }
  
             #flex {
                display: flex;
            }
  
             /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }
  
             /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #ffe6f2;
                flex: 1;
                padding: 20px;
                order: 2;
            }
  
             footer {
                background-color: #ff9999;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fd9ba6+0,fc8a95+50,fc7881+51,f9645f+100 */
background: #fd9ba6; /* Old browsers */
background: -moz-linear-gradient(top,  #fd9ba6 0%, #fc8a95 50%, #fc7881 51%, #f9645f 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #fd9ba6 0%,#fc8a95 50%,#fc7881 51%,#f9645f 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #fd9ba6 0%,#fc8a95 50%,#fc7881 51%,#f9645f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd9ba6', endColorstr='#f9645f',GradientType=0 ); /* IE6-9 */

                text-align: center;
                font-family: VCR;
                font-size: large;
                /* this centers the footer text */
            }
  
              h1,
            h2,
            h3 {
                color:  #c32273;
            }
  
             h1 {
                font-size: 30;
            }
  
             strong {
                /* this styles bold text */
                color:  #c32273;
            }
  
             @media only screen and (max-width: 1000px) {
                #flex {
                    flex-wrap: wrap;
                }
  
                 aside {
                    width: 100%;
                }
  
                 main {
                    order: 1;
                }
  
                 #navbar ul {
                    flex-wrap: wrap;
                }
            }

.link-spanner{
  position:absolute; 
  width:1100px;
  height:90px;
  top:0;
  left: 100;
  z-index: 1;
}
