:root {
  /* Global Constants */

  /* --pageBGColor: #f4f4f4; */
  /* --darkBGColor: #5d5c61; */
  /* --pageHighlight: #7395ae; */
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  background-color: #f4f4f4; /* Background Color */
}

/* Global */
.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

/* Header **/
header {
  background: #5d5c61; /* Dark BG Color */
  color: #ffffff;
  min-height: 70px;
  text-shadow: 0.15em 0.15em 0.2em black;
  border-bottom: #7395ae 3px solid; /* Page Highlight */
}

header #branding {
  float: none;
  text-align: center;
}

header .highlight {
  color: #7395ae; /* Page Highlight */
  font-weight: bold;
}

/* Showcase */
#showcase {
  min-height: 250px;
  background-color: #cccccc;
  background: url("../img/showcase.png"); /* no-repeat 0 -200px */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #ffffff;
  text-shadow: 0.1em 0.1em 0.5em black;
}

#showcase h1 {
  margin-top: 50px;
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* Boxes */
#boxes {
  /* margin-top: 20px; */
}

#boxes h2 {
  text-align: center;
}

#boxes .box {
  width: 90%;
  margin: 0 5% 5px 5%;
  text-align: center;
  font-weight: bold;
  background-color: #7395ae; /* Page Highlight */
  border: 1px solid black;
}

#boxes .box img {
  border: 1px solid black;
}

#boxes a {
  color: white;
  text-decoration: none;
  text-shadow: 0.15em 0.15em 0.2em black;
}

footer {
  border-top: #7395ae 3px solid; /* Page Highlight */
  color: white;
  background-color: #5d5c61; /* Dark BG Color */
  padding-right: 10px;
  text-align: right;
  text-shadow: 0.15em 0.15em 0.2em black;
}

/* Media Queries */
@media (max-width: 768px) {
  header #branding,
  header nav,
  header nav li,
  #newsletter h1,
  #newsletter ul,
  #newsletter .box1,
  #newsletter .box2,
  article#main-col,
  aside#sidebar {
    float: none;
    text-align: center;
    width: 100%;
  }

  aside#sidebar ul {
    list-style: none;
  }

  #showcase h1 {
    margin-top: 30px;
  }
}
