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

            :root {
                --body-bg-image: url('/bg/purplerain.png');
                --main-bg-image: url('/soursugar/deco/mofulltile.png');
                --border-image: url('soursugar/deco/soursugarlacetop02.png');
                --inner: url('bgs/lav-white-diamond-bg.png');
                --spacing: 15px;
                --divider: url('images/rosepearls.png');

            }

            /* FONTS */

           @font-face {
                font-family: 'Birch Leaf';
                src: url('/fonts/BirchLeaf.otf'); format('truetype');
            }

            @font-face {
  font-family: 'RainyHearts';
  src:  url('/fonts/rainyhearts.ttf') format('truetype');
}

/*top decor*/
  #topborder{
background-image: var(--border-image);
background-repeat: repeat-x;
height: 100px;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -3;
}

/* BODY*/
            body {
                font-family: 'RainyHearts';
                min-height: 100vh;
                font-weight: 800;
                margin: 0;
                background-color: #CBC8F3;
                background-size: auto;
                color: #7F77FF;
                background-image: var(--body-bg-image);
                background-repeat: repeat;
            }

            * {
                box-sizing: border-box;
            }
            
            /*Container*/
            
            #container {
                display: flex;
           gap: -500px;
         flex-direction: row;
           flex-wrap: wrap;
            justify-content: center;
              position: relative;
    height: 100vh;
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #000000;
                font-weight: bold;
                text-decoration: none;
            }

            #header {
                width: 100%;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                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: #ED64F5;
                /* 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: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            footer {
                background-color:black;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }
            
.widget { /*this is the sidebar widgets*/
    transition: scale 0.5s;
    width: 160px;
  }

  .widget:hover { /*this makes them grow*/
    transform: scale(105%) rotate(5deg);
  }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
              
                width: 150px;
                padding: 5px;
                font-size: 17px;
            }
            
             .box{
      border: 1px solid;
      border-radius: 15px;
      padding: 5px;
      max-height: 400px;
      overflow-y: scroll;
      text-align: center;
      margin: auto;
  }
  
    .box2{
      border: 1px solid;
      border-radius: 5px;
      padding: 5px;
      max-height: 200px;
      overflow-y: scroll;
      text-align: center;
      margin: auto;
  }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
    background-image: var(--main-bg-image);
    min-height: 100vh;
    flex: 1;
    padding: 10px;
    order: 2;
    text-align: center;
    border: 1px solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: none;
    border-image: url('/soursugar/deco/soursugarlace.png') 50 round;
    border-image-outset: 1;
    border-bottom: 2px solid black;
    width: 900px;

            }

            /* 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;
                width: 200px;
                height: 400px;
                font-family: 'Birch Leaf';
                color: white;
                text-shadow: 2px 2px 4px mediumpurple;

            }

            #rightSidebar {
                order: 3;
                 width: 200px;
                height: 150px;
                bottom: 0px;
                font-family: 'Birch Leaf';
                color: white;
                text-shadow: 2px 2px 4px mediumpurple;
            }
            
            
            /*TEXT*/
            
            .maintext {
    font-size: 20px;
    margin: 5px;
    font-family: 'RainyHearts';
    color: white;
  }
  
  .lefttext {
    font-size: 17px;
    margin: 6px;
    font-family: 'RainyHearts';
    color: white ;
  }

            h1,
            h2,
            h3 {
                color: Black;
                font-family: 'Birch Leaf';
            }

            h1 {
                font-size: 40px;
            }

            strong {
                /* this styles bold text */
                color: black;
            }
            
            a {
              color: white;
            }
            
            subtitle{
              text-shadow: 2px 2px 4px mediumpurple;
            }
            
            ul {
  
  list-style-type:none; /* this removes the bulletpoints */
  /* there is an annoying left padding in the ul element by default */
  padding-left:0; /* this removes it */
}

li a {
  display:inline-block; /* this allows us to add margin to each item 
                           so there's space for it to rotate */
  margin:10px;
  
  color: white;
}

/* this makes stuff happen when you hover! */
li a:hover {
  transform:rotate(-15deg); /* play with this 15deg value, works w/ negatives too! */
  /* more CSS transform options: https://developer.mozilla.org/en-US/docs/Web/CSS/transform */
  color: white;
}

ul.heartbullets {
  list-style: none;
  
}

ul.heartbullets li::before {
  /* look up 'css code symbols' for more symbols */
  content: "\2665";
  
}


            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: ;
                border: 1px solid;
                padding: 10px;
            }

            /* CSS for extras */
            
             hr {
  background:var(--divider) repeat top center;
	height:40;
	border:none;
    }
    
    /*Page dolls*/
#rightpagedoll {
    position: fixed;
    bottom: 2%;
    right: 5%;
    z-index: 3;
}

 #rightpagedoll img {
    max-width: 100%;
    }


   #leftpagedoll {
    position: fixed;
    bottom: 2%;
    left: 5%;
    z-index: 3;
    }

  #leftpagedoll img {
    max-width: 100%;
    }


            /* 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;
                }
                  @media only screen and (max-width: 900px) { 
    #rightpagedoll {
      display: none;
      }
        @media only screen and (max-width: 900px) { 
    #leftpagedoll {
      display: none;
      }
  }

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

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
            /***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.ezgallery.montage { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ezgallery.montage img {
  flex: auto;
  margin: 0 5px 5px 0;
  object-fit: contain;
  object-position: bottom;
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  object-position: bottom;
}


*{
box-sizing: border-box;
margin: 0;
padding: 0;
}