/*Goodbye style.css*/

* {
  cursor: url(https://cur.cursors-4u.net/others/oth-4/oth378.cur), auto !important;
}

  :root {
   --header-image: url(''); 
   --body-bg-image: url('https://vampirelounge.neocities.org/dark_forest.jpg');
                --content: #000000;
            }

    @font-face {
    font-family: "boote"; 
    src: url("https://elbowthief.neocities.org/fonts/BOOTER-SKINNY.ttf") format("truetype");
}

            body {
                font-family: 'booter';
                margin: 0;
                background-color:  #000000;
                background-size: 300px;
                color: #fff;
                background-image: var(--body-bg-image);
                background-size: 100%;
                background-attachment: fixed;
                letter-spacing: 0.05em;
            }

            * {
                box-sizing: border-box;
            }

            

            #container {
                max-width: 1300px;
                /* 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; */
                margin-left: auto; margin-right: auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color:  #ffffff ;
                text-decoration: none; 
                font-size: 19px;
            }

 #container a:hover {
                color:  #fff;
                text-decoration: underline;
            }


            #header {
                width: 100%;
                background-color: #000000;
                /* header color here! */
                height: 280px;
                /* 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: 50%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: ;
                /* navbar color */
                width: 100%;
            }

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

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

            /* navigation links*/
            #navbar li a {
                color:  #ff0000 ;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
            }

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

            #flex {
                display: flex;
            }

            /* #220600 this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            #leftSidebar {
                background-color: #220600;
                width: 225px;
                height: 780px;
                padding: 20px;
                background-image: url('');
                border: #fff 5px;
                border-style: double;
                border-radius: 10px;
               }

#rightSidebar {
                background-color: #220600;
                width: 225px;
                height: 780px;
                padding: 20px;
                background-image: url('');
                border: #fff 5px;
                border-style: double;
                border-radius: 10px;
               }


#rightbar {
                background-color: #220600;
                width: 1300px;
                height: flex;
                padding: 20px;
                background-image: url('');
                border: #fff 5px;
                border-style: double; }

.divscroll
{
Width: 186px;
Height: 450px;
Overflow-y:scroll;
Margin: 0px;
}

.inline
{
  display: inline;
}

.image
{
  box-shadow: 0 0 20px black;
}

            main {
                background-color: ;
                flex: 1;
                padding: 30px;
                width 300px ;
                order: 2;
                text-align: center;
                margin-top: 200px;
            }

            
           #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }
            
            #rightbar {
              order: 4;
            }


            h1,
            h2,
            h3,
            h4{
                color:  #ff0000 ;
            }

            h1 {
                font-size: 30px;
            }
            
           p, li{
             
             font-size: 19px;
           }

            strong {
                color: #f6a047;
            }

            /* this is just a cool #f6a047 box, it's the darker colored one */
            .box {
                background-color: #09012f;
                padding: 10px;
                border: #fff 5px;
                border-style: solid;
                margin: 20px;
                width: 200px;
            }

.blinkie
{
  width: 150px;
  height: 20px;
  margin: 3px; 
}




            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                background-color: #000000;
            }


            /* 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 subtract it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1200px) {
                #flex {
                    flex-wrap: wrap;
                }

                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;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }
                
                #rightbar {
                  order: 4;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }