/* stylelint-enable */ 
/* fonts */
@font-face { font-family:   
  "dubellay"; src: url("fonts/dubellay.ttf") format("truetype"); }
  
@font-face { font-family:
  "ONPTypes"; src: url("fonts/ONPTypes.otf") format("opentype"); }
  
h1, h2, h3, h4
  { font-family: "dubellay"; }
    
body {
    font-family: "ONPTypes";
    background-color: #000000;
    color: #FFFFFF; }
    
/* highlight color */
::selection {
    background: #d63e3e50; }

/* the special yummy text with the image overlay */
.imagemask {
    background-image: url("https://file.garden/aWKauy8voz-ck0sc/text%20texture.jpg");
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight:bold;
    width:fit-content;
    /* add below if you want an outline, if not remove */
    
    }

/* boxes that u can scroll */
.scrollbox {
      
    overflow: scroll;
    width: 18em;
    height: 10.25em;
    border: 1px #000;
    padding: 20px;
    background-color: #fff ;
    position: static;
    top: -36.75em;
    left: 595px;
    }

/* blurred text setup */
.blur-text-container .blur-text {
        filter: blur(1.1px);
        transition: all 250ms ease;
        }
.blur-text-container .blur-text:hover {
        filter: blur(0); }
 

/* link colors*/
a:link {
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
    }
a:visited {
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
    }
a:hover {
    color: #e80000;
    text-decoration: underline
    }
a:active {
    color: #e80000;
    text-decoration: underline
    }


/* custom scrollbar */
::-webkit-scrollbar {
    width: 2px; 
    }
::-webkit-scrollbar-thumb {
    background: #b30000;
    border-radius: 1px;
    }
::-webkit-scrollbar-thumb-hover {
    background: #e80000;
    border-radius: 1px;
    }
::-webkit-scrollbar-track {
    border-radius: 1px;
    }


/* custom cursor, gotten from: https://www.cursors-4u.com */ 
* {cursor: url(https://cur.cursors-4u.net/cursors/cur-2/cur117.cur), auto !important;} 
   
   
/* "user styles
styles are what change the color and sizes of stuff on your site.
these are variables that are being used in the code
these tended to confuse some people, so I only kept 
the images as variables" - sadgrl */

:root {
    --header-image: url('https://file.garden/aWKauy8voz-ck0sc/trees%20bg.jpg');
    --footer-image: url('https://file.garden/aWKauy8voz-ck0sc/trees%20bg2.jpg');
    --side-nav-top-bar-image: url('https://file.garden/aWKauy8voz-ck0sc/sidebar%20texture.jpg');
    --main-image: url('https://file.garden/aWKauy8voz-ck0sc/main%20texture1.jpg');
    --box-image: url('https://file.garden/aWKauy8voz-ck0sc/box%20texture.jpg');
    --body-bg-image: url(''); 
    }



body {
    padding-top: 20px;
    padding-bottom: 30px;
    margin: 5px;
    background-color: #000000;
    color: #000000;
    background-image: var(--body-bg-image);
    }


* { box-sizing: border-box; }

/* 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: 800px;
/* 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 */
    }


#header {
    height: 80px;
    width: 100%;
    padding: 10px;
    background-color: #bfbfbf;
/* 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;
    background-image: var(--side-nav-top-bar-image);
    /* 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:link{
   color: #b30000;
/* 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: #e80000;
    text-decoration: underline;
    }

#flex {
    display: flex;
    }

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

aside {
    margin: 5px auto;
    background-image: var(--side-nav-top-bar-image);
    width: 190px;
    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 {
   margin: 5px auto;
   background-image: var(--main-image);
    flex: 1;
    padding: 15px;
    padding-left: 30px;
    order: 2;
    }

/* 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; }
#rightSidebar { order: 3; }

footer {
    margin: 5px center;
    background-color: #bfbfbf;
    /* background color for footer */
    width: 100%;
    height: 50px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
   background-image: var(--footer-image);
    }

            

/* this is just a cool box, it's the darker colored one */
.box {
    background-image: var(--box-image);
    background-color: #ebebeb;
    border: 3px solid #000000;
    padding: 10px;
    }
 
 /* CSS for extras */

#topBar {
    width: 100%;
    height: 25px;
    padding: 5px;
    font-size: 70%;
    background-image: var(--side-nav-top-bar-image);
    margin-bottom: 5px; 
    margin-top: 5px;
    }
            
img:hover {
   transform: rotate(7deg);
    }


/* 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: 700px) {
#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; }
#navbar ul { flex-wrap: wrap; }
                
}
    
    
    
    
    
    
    