
:root {
    --header-image: url('fondout2t.png');
    --body-bg-image: url('a08-bg-grid.gif');

    /* colors */
    --content: #43256E;
}

/* if you have the URL of a font, you can set it below */
/* feel free to delete this if it's not your vibe */

/* this seems like a lot for just one font and I would have to agree 
but I wanted to include an example of how to include a custom font.
If you download a font file you can upload it onto your Neocities
and then link it! Many fonts have separate files for each style
(bold, italic, etc. T_T) which is why there are so many!

*/

@font-face {
    font-family: 'TheGoodMonolith';
    src: url('TheGoodMonolith.ttf');
  }
  
  @font-face {
    font-family: 'Pixel_NES';
    src: url('Pixel_NES.otf');
  }

    @font-face {
    font-family: 'punch-out-nes';
    src: url('punch-out-nes.ttf');
  }
  
  body, a, a:hover { cursor:url('nat997.cur'), auto }
  body {
      background: var(--body-bg-image)repeat;
      background-color: #242424;
     
     font-family: 'TheGoodMonolith';
       font-size:16px;
       color: #e7d0d0;
       }
       
     a {
      text-decoration: none;
         color: #FF993A;
       }
       
       a:hover{ color: #e75e6b;
  
      }

* {
    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 {

    text-align: justify;
    max-width: 900px;
    /* this is the width of your layout! */
    /* if you change the above value, auto to the bottom
and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */

}

/* the area below is for all links on your page
EXCEPT for the navigation */


#header {
    width: 100%;
    background-color: #5e4e8c;
    /* header color here! */
    height: 310px;
    /* 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!! */


#flex {
    display: flex;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
 
    border: none;

    width: 300px;
    margin: 10px;
    
    font-size: smaller;
    overflow: auto;
    display: flow-root;
    height: 650px;
    /* this makes the sidebar text slightly smaller */
}


/* this is the color of the main content area,
between the sidebars! */
main {
    border-radius: 25px;
    background-color: #0C120C;
    flex: 1;
    padding: 20px;
    order: 2;
    overflow: auto;
    display: flow-root;
    height: 700px;
    margin-bottom: 30px;
}

main img, aside img {
    max-width: 100%;
    height: auto;
    }

/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */

*/ #leftSidebar {
    order: 1;
}

.textbox{
    background: #000000;
    border:1px dashed #858BFF;
    border-radius:10px;
    text-align: center;
    padding:6px;
    box-shadow:3px 3px 3px #000000
    
    }

    .frame{
      background:#000000;
      height: 10vh;
      border-radius:3px;
      padding:6px;
      overflow: scroll;
      display: flow-root;
      box-shadow:3px 3px 3px #000000
       
      }

strong {
    /* this styles bold text */
    color: #e75e6b;
}

.header h2, .header h3, .header h1 {

    color: #c8c2ff;
    text-align: center;
    border: 0px solid rgb(0, 0, 0);
    margin: 18% auto; /*approx centered*/
    opacity: 0.999999;
  }

  .header {
    background: black;
    height: 300px;
    border-bottom: 3px solid #C20114;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(rgb(0,0,0,0.7),rgb(0,0,0,0.7)), var(--banner); /*Header image -- replace with your own!*/
    background-size:cover;
    }

/* this is just a cool box, it's the darker colored one */


/* CSS for extras */



/* 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: 800px) {
    #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: 2;

        height: 700px;
    }

    #leftSidebar {
        order: 1;
    }

}

.nb {border:none;}

strong {
 color: #FF993A;
}

h1 {
 font-family: 'Pixel_NES';
 font-weight: normal;
 font-size: smaller;

}

h2 {
 font-family: 'Pixel_NES';
 font-weight: normal;
 color: #e75e6b;
font-size: x-large;


}

h3 {
 font-style: italic;
 font-weight: normal;
 color: #FF993A;
}


dt{
  color: #e75e6b;
       font-weight:700;
       float:left;
       clear:both;
       margin:0 0 5px;
       width:140px
       }
       dd{
         color: #858BFF;
       margin:0 0 5px 140px
       }
 

.hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }


  input[type='checkbox'] { display: none; }
  .wrap-collabsible { margin: 1.2rem 0; }
  .lbl-toggle { display: block; font-weight: bold;
    font-size: 1.2rem; text-transform: uppercase; text-align: center; padding: 1rem;
    color: #c8c2ff; background: #3a40aa; cursor: pointer; 
    transition: all 0.25s ease-out; border-radius: 10px;} 
    .lbl-toggle:hover { color: #e75e6b; } 
    .lbl-toggle::before { content: '☆'; display: inline-block; vertical-align: middle; 
      margin-right: .7rem; transform: translateY(-2px); transition: transform .2s ease-out; } 
      .toggle:checked+.lbl-toggle::before { transform: rotate(90deg) translateX(-3px); } 
      .collapsible-content { max-height: 0px; overflow: overlay; transition: max-height .25s ease-in-out; } 
      .toggle:checked + .lbl-toggle + .collapsible-content { max-height: 350px; } 
      .toggle:checked+.lbl-toggle { border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } 
      .collapsible-content .content-inner { border: 1px solid #3a40aa;
        background: #000000;
        padding: .5rem 1rem;  border-style: dashed;
      } 
        .collapsible-content p { margin-bottom: 0; }


  
/* Cute Itty Bitty Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
  }
  ::-webkit-scrollbar-button {
    width: 4px;
    height: 4px;
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #858BFF;
  
  }
  ::-webkit-scrollbar-thumb:hover {
    background:#3a40aa;
  }
  ::-webkit-scrollbar-thumb:active {
    background:#06005a;
  }
  ::-webkit-scrollbar-track {
    background:#000000;
    border:none;border-radius:0;
  }
  ::-webkit-scrollbar-track:hover {
    background:#000000;
  }
  ::-webkit-scrollbar-track:active {
    background:#000000;
  }
  ::-webkit-scrollbar-corner {
    background:#000000;
  }
  