:root {
  --bg-color:#8B9F9F; /* light green */
  --pg-color:#f9fcea; /* very light green */
  --accent:#93C0A4; /* dark green */
  --accent-2:#8E9B90; /* gray */
  
}
.new-rocker-regular {
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
}
*{
  box-sizing:border-box;
}

html, body {
  margin:0;
  font-family:sans-serif;
  font-size:0.85em;
  /* here is where you'd add a background image */
}


body {
  background-image: url('Green411.gif');
}
#container {
  background-image: url('Green411.gif');
  width:100%;
  border-left:10px solid transparent;
  border-right:1px solid transparent;
  position:relative;
  font-family: "New Rocker"
}
#outer {
  border: 30px solid transparent;
border-image: url('purp020.jpg') 17 round;
  margin-left:100px;
  margin-right:100px;
}
nav {
  background-image: url('purp020.jpg');
  position:absolute;
  top:100px;
  left:50px;
  border:10px Groove purple;
  width:100px;
  height:420px;
  z-index:9;
}
article { 
padding:50px;
  line-height:1.7em;
  
}
#Title {
  width: 800px;
  height: 90px;
  margin: auto;
  border: 9px Groove purple;
  background-color:black;
}
#blog1 { 
  width: 700px;
  height: 400px;
  margin: 15px;
  border: 9px Groove purple;
  background-color:black;
}
#photo1 { 
  width: 300px;
  height: 400px;
  margin: 15px;
  float:right;
  border: 9px Groove purple;
  background-color:black;
}
#blog2 { 
  width: 700px;
  height: 400px;
  margin: 15px;
  position: relative;
  left:30%;
  top: 100%;
  border: 9px Groove purple;
  background-color:black;
}
h1 {
  font-size:60px;
  padding-bottom:10px;
  text-align:center;
  margin:24px;
  padding:0;
  color:white;
}
h2 {
  font-size:15px;
  padding-bottom:8px;
  background-color:black;
  margin:10px;
  padding:0;
  color:white;
}
nav > ul {
  background-color:black;
  margin:10px;
  padding:0;
  list-style:none;
}
nav > ul > li {
  border-bottom:1px solid white;
  text-align:center;
}
nav > ul > li:last-child {
  border-bottom:none;
  text-align:center;
}
nav > ul > li > a {
  font-size:15px;
  padding-top:20px;
  padding-bottom:20px;
  display:inline-block;
  color:white;
}
 @media only screen and (max-width: 850px) {
   nav {
     left:0;
   }
   #container {
     width:100%;
     margin-left:0;
   }
   #outer {
     margin-left:0;
   }
   
}