 


 :root {
  --header-image:url('fotos/forestfog.jpg');
  --body-bg-image:url('fotos/treestile.png');
   
   /* colors */
   --content:#43256E;
}


@font-face {
    font-family: "JMH Cthulhumbus Arcade"; 
    src: url("JMH Cthulhumbus Arcade.otf") format("opentype");
}





body {
  font-family: Garamond;
  font-family: 'Garamond', Serif;
  margin:0;
  background-color:#162413;
  /* you can delete the line below if you'd prefer to not use an image */
  background-size:65px;
  color:#fceaff;
  background-image:var(--body-bg-image);
  word-wrap: break-word;
}

* {
  box-sizing:border-box;
}

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

/* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */


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

/* the area below is for all links on your page
EXCEPT for the navigation */
#container a {
  color:#6bba65;
  font-weight:bold;
  /* if you want to remove the underline
  you can add a line below here that says:
  text-decoration:none; */
}


#flex {
  display:flex;
  width: 95%;
  height: 100%;
  margin-top: 20px;
  margin-right:auto;
  margin-left:auto;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
  background-color: transparent;
  width: 25%;
  padding:10px;
  font-size:smaller; 
  margin:auto;
  height:500px;
  scrollbar-color: #326b2d #06210f;
  scrollbar-width: thin;
  overflow:auto;
 
}


/* this is the color of the main content area,
between the sidebars! */
main {
  background-color: transparent;
  order:2;
  height:500px;
  width: 50%;
  overflow:auto;
  margin: auto;
  scrollbar-color: #326b2d #06210f;
  scrollbar-width: thin;
}

/* 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 {
   background-color: #11360d;
  border: 3px solid #326b2d;
  width: 500px;
  margin: auto;
  height: 7%;
  padding: 10px;
  text-align: center;
}
    a {
                color: #6bba65;
                font-weight: bold;

            }
    h1,
    h2,
    h3 {
                font-family: JMH Cthulhumbus Arcade;
                color: #63ad5e;
    }
    img {
              border: 2px solid #326b2d;
    }
    strong { 
  color:#ED64F5;
    }
   .box {
                background-color: #06210f;
                border: 2px solid #326b2d;
                padding: 10px;
                height: auto;
                margin: 5px;
    }
    .asidebox {
                background-color: #11360d;
                border: 3px solid #326b2d;
                width: 150px;
                padding: 10px;
                height:auto;
                
    }
    .mainbox {
                background-color: #305431;
                border: 3px solid #67a862;
                padding: 10px;
    }
    .button {
                background-color: #06240e;
                border: 2px solid #67a862;
                color: #6bba65;
                padding: 8px 10px;
                text-align: center;
                text-decoration: none;
                display: inline-block;
                font-size: 16px;
                cursor: pointer;
    }
    .square {
      height: 100px;
      overflow-y: scroll;
      overflow-x: hidden;
}
/* CSS for extras */



/* 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
*/
* {cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat967.cur), auto !important;} 


             @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: 1;
                    width: 100%;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                .asidebox {
                width: 100%;
                
    }
             }
         

