        <style>   :root {
                --header-image: 
                --body-bg-image: 
                --content: brown;
            }

          #header {
                width: 56em;
                background-color: #5e4e8c;
                height: 150px;
                margin-left: 110px ;
                background-image: url('https://lavenderfaerie.neocities.org/IMG_0598.png');
                background-size: 100%;
            }
      
          body {
                font-family: 'Nunito', sans-serif;
                margin: 0px auto;
                background-color: #c9bcf7;
                background-size: 150px;
                color: brown;
                background-image: url(https://lavenderfaerie.neocities.org/fondo_purplestars.gif);
            }

            #container {
                max-width: 1050px ;
                margin: 0px ;
                margin-left: 45px ;

            }

            #container a {
                color: #ED64F5;
                font-weight: bold;
            }

            #flex {
                display: flex;
            }

            #leftSidebar {
                background-color: #fccadf;
                width: 190px;
                padding: 20px; 
                padding-top: 10px;
                font-size: smaller;
                border: 3px dashed brown;
                color: brown;
            }

#leftSidebar li{
    padding-left: 8px;
    padding-bottom: 3px;
background: linear-gradient( 1.5deg, pink, white 30%);    
    border-bottom: 3px solid pink;
    margin-top: 4px;
    box-shadow: 3px 2px 2px inset beige; 
    color: brown;
}


 #rightSidebar {
                background-color: #fccadf;
                width: 200px;
                padding: 20px; 
                padding-top: 10px;
                font-size: smaller;
                border: 3px dashed brown;
                color: brown;
            }

#rightSidebar li{
    padding-left: 8px;
    padding-bottom: 3px;
background: linear-gradient( 1.5deg, pink, white 30%);    
    border-bottom: 3px solid pink;
    margin-top: 4px;
    box-shadow: 3px 2px 2px inset beige; 
    color: brown;
}
            
            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-image: url(https://lavenderfaerie.neocities.org/sky.png);
                margin: 0 auto
                flex: 1;
                padding: 20px;
                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;
            }

            h1,
            h2,
            h3 {
                color: #fa66a4;
            }

            h1 {
                font-size: 25px;
            }

            h4 {
                font-size: 50px;
                text-align: center;
                color: aliceblue;  
                margin-top: auto
}

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

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

    .box {   
             background-color: #fa78af;
             color: aliceblue;
             text-align: left;
             height: 200px;
             width: 200px;
             padding-bottom: 200px;
             padding-top: 3px;
             margin: auto;
                             flex: 1;

             }
.box li{
       list-style: none;
       padding-top: 5px;
       padding-left: 5px;
       margin-top: 4px;
       background: linear-gradient( 1.5deg, pink, white 30%);    
       border-bottom: 3px solid pink;
       box-shadow: 3px 2px 2px inset beige; 
       color: brown;
}
            /* 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: 950px) {
                #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;
                }

                #rightSidebar {
                    order: 3;
            
            }
        </style>

    