

 #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #948163;
                /* navbar color */
                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: #81281f;
                /* 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: #d7984b;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
 aside {
                background-color: #8e854f;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
                height: 600px;
                overflow: auto;
            }
 footer {
                background-color: #5f5c57;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }
 main {
                background-color: #b66941;
                flex: 1;
                padding: 20px;
                order: 2;
                height: 600px;
                overflow: auto;
            }
#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 */
            }
:root {
                --header-image: url('https://file.garden/aFnuWE0VnW91USHj/orion%20neocities/tree.jpg');
                --body-bg-image: url('https://file.garden/aFnuWE0VnW91USHj/orion%20neocities/floral.jpg');

                /* colors */
                --content: #43256E;
                background-size: 125px;
                color: #fde4af;
                background-image: var(--body-bg-image);
            }
.box {
    border: solid 2px #b66941;
    background-color: #c9974e;
    padding: 10px;
    height: 200px;
    overflow:auto;
}

#eddieHome {
    padding-top: 20px;
    -webkit-mask-image: url(https://i.imgur.com/WPTnhzY.png);
-webkit-mask-size: 250%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
 transform:rotate(0deg);
transition:0.3s;}
#eddieHome:hover {
     -webkit-mask-size: 100%;
  transform:rotate(-15deg);
  transition:0.3s;
}




