* {
  box-sizing: border-box;  /* to make box sizing for width and padding  predictable*/
}

body {
  display: block;
  unicode-bidi: isolate;
  background-color: #ECFAE3;
  font-family: sans-serif;
  margin: 0;
  padding:0; 			 
  
  
}

.container-main {
  padding: 0 180px 0 25px; /* Leaving 180px for the side bar for no overlap*/
  max-width: 1200px; /* Prevents the site from stretching too wide on huge monitors */
  margin: 0 auto;
  position: relative;
  
}

.intro {
  text-align: center;
  width: 100%;
  
}

.intro h1 {
	border: 1px solid black;
  margin: 5px;
  padding: 10px;
  font-family: cursive; 
  box-shadow: 2px 2px;
  background-color: white;
  
}

.intro h2 {
	border: 1px solid black;
  margin: 5px;
  padding: 10px;
  box-shadow: 2px 2px;
  background-color: white;
  
}

.p1 {
  font-family: cursive; /* Makes first paragraph cursive font*/
  font-weight: lighter; /* Makes the text thiner*/
  clear: both;
  margin: 5px 20px 10px 10px;
  width: 160px;
  float: left; /* Moves text to the left side */
}

.p2 {
  text-align: justify;
  clear: right;
  padding: 0px 10px 0 10px;
  border: 1px solid ; /* gives the boarder around the div*/
  box-shadow: 2px 2px; /* gives the box a shadow */
  margin-top: 30px;
  margin-left: 190px; /* cleared margins + width 160px from p1 */
  background-color: white; /* Made first 2 paragraphs white */
}

.intro::after {
  content: "";
  display: table;
  clear: both;
}

div {
  display: block;
  unicode-bidi: isolate;
  
}

aside {
  display: block;
  unicode-bidi: isolate;
  
}


footer {
  text-align: center;
  padding: 10px;
  letter-spacing: 1px;
  
}

.container-2 {
  text-align: center;
  margin: 30px 5px;
  padding: 5px;
  border: 1px solid;
  background-color: white;
  box-shadow: 2px 2px black;
  
  
}

.container {
  text-align: center;
  padding: 5px;
  margin: 30px 5px;
  border: 1px solid;
  background-color: #FCFFEB;
  box-shadow: 0 5px 5px 5px #67F09B;
}

.sidebar {

  width: 100%;
  margin-top: 40px;
  text-align: center;
  
  
}


@media(max-width: 850px){ /* handles smaller screens/devices */
  .container-main{
    padding: 15px;  /*takes away the large gap on the right*/
  }
}
    
  

