html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #000;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
/*
 * Store the main color and
 * background color as variables
 */
body {
  font-family: 'Georgia';
  background-color: #caffb9;
  color: #444;
}
header {
  font-family: 'Quicksand';
  padding: 50px 10px;
  color: #fff;
  font-size: 75px;
  text-align: center;
  font-weight: bold;
/*
   * Note the use of the `main-color`
   * variable and the `darken` function
   */
  background-color: #66a182;
  border-bottom: 1px solid #46725b;
  text-shadow: 0px -1px 0px #46725b;
}
.container {
  width: 750px;
  margin: 50px auto;
  overflow: hidden;
}
.main-content {
  float: left;
  width: 550px;
}
.main-content img {
  float: left;
  width: 50%;
  margin-right: 10px;
}
.main-content .clear {
  clear: both;
}
.main-content p {
  margin-bottom: 20px;
}
.main-content h1 {
  font-family: 'Quicksand';
  margin: 13px 10px 4px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
  border-radius: 2px 2px 0px 0px;
  margin-bottom: 10px;
  text-align: center;
  color: #66a182;
}
.sidebar {
  float: left;
  width: 200px;
}
.sidebar .widget {
/*
     * Note the lack of vendor
     * prefixes here. Nib will
     * add them for us
     */
  border-radius: 3px;
  border: 1px solid #aef78e;
  margin-left: 20px;
  background-color: #caffb9;
  -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.8), 0px 3px 0px -2px rgba(0,0,0,0.1);
  box-shadow: inset 0px 0px 0px 3px rgba(255,255,255,0.8), 0px 3px 0px -2px rgba(0,0,0,0.1);
}
.sidebar .widget h1 {
  font-family: 'Quicksand';
  margin: 13px 10px 4px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
  border-radius: 2px 2px 0px 0px;
  margin-bottom: 10px;
  color: #66a182;
}
.sidebar .widget p {
  font-size: 13px;
  padding: 0px 10px;
  margin-bottom: 10px;
}
p {
  line-height: 1.8;
}
footer {
  width: 700px;
  margin: 50px auto;
  border-top: 1px dotted #ccc;
  padding-top: 5px;
  font-size: 13px;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}
#overlay img{
	margin : auto;
}

/* RESPONSIVE LINES */
@media screen and (max-width: 800px) {
  .container {
    width: 600px;
  }
  .main-content {
    width: 400px;
  }
  footer {
    width: 600px;
  }
}
@media screen and (max-width: 600px) {
  .container {
    width: 400px;
  }
  .sidebar {
    clear: both;
    width: 100%;
  }
  .sidebar .widget {
    margin-left: 0px;
  }
  .main-content {
    width: 400px;
  }
  footer {
    width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    width: 320px;
  }
  .sidebar {
    clear: both;
    width: 100%;
  }
  .sidebar .widget {
    margin-left: 0px;
  }
  .main-content {
    width: 320px;
  }
  footer {
    width: 320px;
  }
}
