/*javascript variables for some pictures*/

         /*   :root {
                --header-image: url('https://flyingredbird.neocities.org/backgrounds/powerplanthallway.png');
                --body-bg-image: url('https://flyingredbird.neocities.org/backgrounds/possible%20industrial%20background.jpeg');
                /* need to make the background more purple*/

                /* colors */ /*
                --content: #b3b6e2;
                scrollbar-color: lime #3f5277;
            }   
            */


/* custom fonts if i feel like doing that (which I will at some point.) */

/*digical clock-looking font*/

            @font-face {
                font-family: 'NuclearDigital';
                src: url('https://flyingredbird.neocities.org/extras/digitalfont.TTF');
            }

            @font-face {
                font-family: 'NuclearDigital';
                src: url('https://flyingredbird.neocities.org/extras/digitalfont_bold.TTF');
                font-weight: bold;
            }

            @font-face {
                font-family: 'NuclearDigital';
                src: url('https://flyingredbird.neocities.org/extras/digitalfont_italic.TTF');
                font-style: italic;
            }

            @font-face {
                font-family: 'NuclearDigital';
                src: url('https://flyingredbird.neocities.org/extras/digitalfont_bolditalic.TTF');
                font-style: italic;
                font-weight: bold;
            }
            
/*Pixelated font*/

            @font-face {
                font-family: 'Game Paused DEMO';
                src: url('https://flyingredbird.neocities.org/extras/GamePausedDEMO-Regular.woff') format('woff');
                font-weight: normal;
                font-style: normal;
                font-display: swap;
            }
            

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-repeat: no-repeat;
                  background-size: 100% auto;
                  color: black;
                background-image: var(--body-bg-image);
                background-attachment: fixed;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */



            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 1500px;
                /* 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 */
                padding: 10px;
            }

            #container a {
                color: black;
                text-decoration: none;
                font-weight: bold;
               
            }
            
            #container a:hover {
              color: #f1e268;
              
              
            }

            #header {
                width: 100%;
                background-color: #b3b6e2;
                height: 400px;
                background-image: var(--header-image);
                background-clip: padding-box;
                background-size: 100%;
                background-repeat: no-repeat;
                border: 5px solid #45576e;
                border-bottom: none;
                border-radius: 20px 20px 0px 0px;
                position: relative;
            }
            
            #cleaning-gif {
              position: relative;
              top: 307px;
              left: 10px;
            }
        
            #yelling-gif {
              position: relative;
              float: right;
              top: 303px;
              right: 10px;
            }
            

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #f1e268;
                /* navbar color */
                width: 100%;
                border: 5px solid #45576e;
                border-top: none;
                border-radius: 0px 0px 20px 20px;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 7px;
            }

            /* navigation links*/
            #navbar li a {
                color: black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: limegreen;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            
            

            aside {
                /* background-color: #3f5277; */
                width: 350px;
                padding: 0px;
                font-size: smaller;
                position: sticky;
                top: 10px;
                align-self: start;
                
            }
            
            #sitemap-link {
              text-align: center;
              margin: auto;
            }
            
            .sidesection {
              background-color: #3f5277;
              margin: 10px 0px;
              padding: 10px;
              /* for the caution tape border: */
                border: 7px solid pink;
                border-image: repeating-linear-gradient(
                  -55deg,
                  #000,
                  #000 20px,
                  #f7e44d 20px,
                  #f7e44d 40px
                ) 10;
              }


            main {
                background-color: #b3b6e2;
                flex: 1;
                padding: 20px;
                order: 2;
              margin: 10px 0px;
                
            }


            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            /* put quotes here, random quote on reload*/
            footer {
                display: flex;
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                
                align-content: center;
                /* this centers the footer text */
            }
            
            #thequotes {
              margin: auto;
              color: #f1e268;
              align-content: center;
              }

            h1,
            h2,
            h3 {
                color: black;
                
            }

            h1 {
                font-size: 50px;
                letter-spacing: 3px;
                font-family: 'Game Paused DEMO';
                font-weight: normal;
                font-style: normal;
            }
            
            h2 {
              font-family: 'NuclearDigital', Garamond, sans-serif;
              
            }
            
            p {
              
              font-family: "Courier New";
              color: black;
              
            }

            strong {
                color: black;
            }
            
            #sidebarlink {
              color: #b3b6e2;
            }

            .box {
                background-color: #b3b6e2;
                border: 1px solid #f1e268;
                padding: 10px;
            }
            
            .simpsongif {
              width: 300px;
              border: 1px solid #3f5277;
              }
            
            #tumblrlink {
              display: flex;
              justify-content: center;
              padding: 10px;
              margin: 0 auto;
            }
            
            #guestbook {
                width: 100%;
                height: 300px;
                margin: 0 auto;
              
              }
              
            #changelog {
                /* overflow: scroll;
                height: 300px; */
                border: 3px solid #3f5277;
                padding: 10px;
                
            }

            
            
            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
            
            #constructiondisclaimer {
              display: flex;
              height: 200px;
              width: 500px;
              border: 1px solid #ccc;
              font: 16px/26px Georgia, Garamond, Serif;
              overflow: auto;
              background-color: #f1e268;
              border: 3px solid red;
            }
            
            #constructionimage {
              width: 200px; 
              margin: 20px; 
              border: 2px solid darkred;
              }
              
            .music-summary {
                font-style: italic;
            }
            
            summary:hover {
              text-decoration: underline;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1400px) {
                #flex {
                    flex-wrap: wrap;
                }
                
                
                  #header {
                    background-position: center;
                    background-size: cover;
                  }
                
                body {
                  background-size: cover;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                    width: 100%;
                }
                
                #constructiondisclaimer {
                    width: 100%;
                    display: block;
                    padding: 20px;
                    height: 400px;
                    overflow: hidden;
                }
                
                #constructionimage {
                    width: 100%;
                    margin: auto auto;
                }

                #leftSidebar {
                    order: 2;
                }

                
                #navbar {
                  width: 100%;
                  }

                #navbar ul {
                /*    flex-wrap: wrap; */
                    width: 100%
                }
            }
            