/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  


   html, body {
    margin: 0;
    height: 100%;
    line-height: 30px;
    background-color: #fff8b0;
    background-image: url(/graphics/bgs/leaves.webp);

}

.html, body a {
    color: #ed49f9;
    text-decoration: none;
    font-weight: bold;
  }
  
  .html, body a:hover {
    color: #ff6262;
    
  }


  /*WRAPPERS*/

  .lebigwrapper {
    width: 960px;
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    box-shadow: 3px 3px 6px #569d7a;
}


.wrapper {
    width: auto;
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    border: 2px ridge #569d7a;
    box-shadow: 3px 3px 6px #569d7a;
}



/*CONTAINERS*/

.flex-container {
    display: -webkit-flex;
    display: flex;
    background-color: red;
    height: 100%;
    width: 400px;
    margin-top: 120px;
    margin-left: 20px;
    margin-right: 20px;
}

.sidenav {
    background-color: lightgray;
    -webkit-flex: 1;
    flex: 1;
}

.content {
    background-color: white;
    padding: 10px;
    -webkit-flex: 5;
    border:#ff6262 4px double;
    flex: 5;
}


/*CONTENT*/



/*FONTS*/

@font-face {
    src: url(/fonts/PixelOperator.ttf);
    font-family: div; 
  }
    div { 
    font-family: div;
    color: #000000;
    font-size: 16px;
    }

    @font-face {
        src: url(/fonts/Witches\ Magic.ttf);
        font-family: header;
      }
        h1 {
        font-family: header;
        color: #ff6262;
        font-size: 30px;
        font-weight: bold;
        word-spacing: 1px;;
        margin:5px;
        }


    @font-face {
        src: url(/fonts/PixelOperator.ttf);
        font-family: header2;
      }
        h2 {
        font-family: header2;
        color: #0000008d;
        font-size: 11px;
        font-weight: bold;
        word-spacing: 1px;;
        margin:5px;
        }



/*BULLETPOINTS*/

li { list-style-image: url(/graphics/minis/leaf.webp); } 




/* SCROLLBAR */

    /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ff6262 black;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: black;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ff6262;
    border-radius: 0px;
    border: 0px double #ff6262;
  }