body {
  color: #222;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 1rem;
  background-color: whitesmoke;
}

header {
  margin-bottom: 1rem;
}

footer {
  margin-top: 1rem;
}

a {
  color: mediumseagreen;
  text-decoration: none;
}

#container {
  display: flex;
  justify-content: center;
}

#sidebar {
  width: 200px;
  margin: 30px;
  border-right: 3px solid mediumseagreen;
  
  ul {
  	padding-left: 0px;
	padding-right: 10px;
  }
  
  li {
	font-size: 1.2em;
  	list-style: none;
	margin-right: 15px;
	padding: 5px;
	text-align: right;
  }

  nav {
  	position: sticky;
	top: 10px;
  }
}

#main {
	width: 907px;
	padding: 30px;
}



/* Mobile Stuff */
@media only screen and (max-width: 600px) {


/* Main Stuff */
  #container {
    flex-direction: column;
  }


  #sidebar {
    margin: 0px;
    border-right: none;
    border-bottom: 3px solid mediumseagreen;

    ul {
    	display: flex;
    }
  }

  #main {
    width: 100%;
    padding: 0px;
  }
}
