

            :root {
                
                --body-bg-image: url(/pictures/bg-deer.png);

                /* colors */
                --content: grey;
            }

            

            body {
                font-family: garamond;
                margin: 0;
                font-size:16px;
                background-color: black;
                background-size: 140px;
                color: black;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

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

           
           
            #container {
                max-width: 900px;
                margin: 0 auto;
               
            }

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

         
            
            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: antiquewhite;
              
              ;
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
              padding-top: 0;
                
            }

            /* navigation links*/
            #navbar li a {
                color: darkgoldenrod;
                font-weight: 800;
                text-decoration: none;
                
            }

            
            #navbar li a:hover {
                color: goldenrod;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            
            aside {
                background-color: blanchedalmond;
                border: 1px solid 
                burlywood;
                border-radius: 5px;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                
            }


            main {
                background-color: blanchedalmond;
                border: 1px solid 
                burlywood; 
                border-radius: 5px;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            
             #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: antiquewhite;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                border:1px solid 
                burlywood;
            }

            h1,
            h2,
            h3 {
                color: darkgoldenrod;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                color: darkgoldenrod;
            }

            
            .box {
                background-color: antiquewhite;
                border: 1px solid
                burlywood;
                padding: 10px;
            }

            

            #topBar {
                width: 100%;
                height: 40px;
                padding: 10px;
                font-size: small;
                background-color: antiquewhite;
            }

       .center {
             display: block;
             margin-left: auto;
             margin-right: auto;
             width: 50%
            }

            .main {
             text-align: justify;
             }     



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

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

    