/* ================================
   SIMPLE RETRO GREEN LAYOUT
   ================================ */

/* Reset */
* {
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #333;
  line-height: 1.4;

  background: #90ee90 url("assets/bg.png") repeat;
}

/* Layout */
/* Wrapper = 2 column layout */
#wrapper {
  width: 760px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #666;

  display: flex;           /* THIS makes it horizontal */
}

/* Sidebar (left column) */
#sidebar {
  width: 180px;
  padding: 15px;
  border-right: 1px solid #ccc;
  font-size: 11px;
}

/* Content (right column) */
#content {
  flex: 1;                 /* THIS makes it take remaining space */
  padding: 15px;
}
/* Sidebar */
#sidebar {
  width: 180px;
  font-size: 11px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
}

/* Sidebar title */
#sidebar h3 {
  font-size: 13px;
  margin-bottom: 8px;
  color: #4a7ba7;
}

/* Link list */
#sidebar ul {
  list-style: square;
  margin-left: 15px;
}

#sidebar li {
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px dotted #ccc;
}

/* Links */
#sidebar a {
  text-decoration: none;
  color: #3366cc;
}

#sidebar a:hover {
  text-decoration: underline;
  color: #cc0000;
}

/* Content */
#content {
  flex: 1;
}

/* Headings */
h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

h2 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

/* Text */
p {
  margin-bottom: 10px;
  text-align: justify;
}

/* Links */
a {
  color: #3366cc;
}

a:hover {
  color: #cc0000;
}

/* Simple boxes (optional) */
.box {
  border: 1px solid #ccc;
  padding: 8px;
  margin-bottom: 10px;
  background: #f5f9fd;
}

/* Footer */
#footer {
  margin-top: 15px;
  padding-top: 10px;
  font-size: 10px;
  text-align: center;
  color: #666;
  border-top: 1px solid #ccc;
}
