
 :root {
   
   /* colors */
   --content:#43256E;
}


body {
  font-family: serif;
  margin:0;
  background-color: salmon;
 /* background-size:65px;*/
  color:black;
  background-image:url(pink.jpg);
}

* {
  box-sizing:border-box;
}

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

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
#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 */
}

/* the area below is for all links on your page
EXCEPT for the navigation */
#container a {
  color:#7c3803;
  font-weight:bold;
}
#header {
  text-align:center; 
  width:100%;
  padding:40px;
  color:red;
  background-color:white;
  font-size: 4em;
  height:150px;
  font-family: "Lucinda Handwriting", Cursive;
  /* 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%;*/
}


#flex {
  display:flex;
}


aside {
  background-color:white;
  width:200px;
  padding:20px;
  font-size:larger;
}

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



/* this is the color of the main content area,
between the sidebars! */
main {
  flex:1;
  padding:20px;
  order:2;
}

#sidebar {
  list-style-type: none;
  margin:0px;
  padding: 10px;
  order:1;
}

footer {
  width:100%;
  height:40px;
  padding:20px;
  text-align:center; /* this centers the footer text */
  font-size:smaller;
}
h1, h2, h3 {
  color:purple;
}
h1  {
  font-family: "Lucida Handwriting", "Brush Script MT", Cursive;
}

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

/* CSS for extras */


/* 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;
  }
  #sidebar {
    order:2;

}