body {
  font-family: system, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Lucida Grande", sans-serif;
  color: #46433a;
  background-color: #e0e4ed;
}

header,
main,
div.hero {
  padding: 0 20px;
}

div.hero {
  text-align: center;
}
div.hero img {
  max-width: 650px;
  width: 100%;
}

/*** wrapper div for both header and main ***/
#main-container {
  margin-top: 5%;
  margin-bottom: 5%;
}

/*** anchor tags ***/
a:link,
a:visited,
a:hover,
a:active {
  color: #2d2c56;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*** main content list ***/
.main-list-item {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0.8em 0;
}

/* override the left margin added by font awesome for the main content list,
since it must be aligned with the content */
.fa-ul.main-list {
  margin-left: 0;
}

/* list icons */
.main-list-item-icon {
  width: 36px;
  color: #46433a;
}

/*** logo ***/
.logo-container {
  text-align: center;
}

.logo {
  width: 96px;
  height: 96px;
  display: inline-block;
  background-size: cover;
  border-radius: 50%;
  -moz-border-radius: 50%;
  border: 2px solid #e0e4ed;
  box-shadow: 0 0 0 3px #46433a;
}

/*** author ***/
.author-container h1 {
  font-size: 2.8em;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #2d2c56;
}

/*** tagline ***/
.tagline-container p {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 2em;
}

/******/
hr {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    #46433a,
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    #46433a,
    rgba(0, 0, 0, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    #46433a,
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    #46433a,
    rgba(0, 0, 0, 0)
  );
}

/*** footer ***/
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 20px;
}

.poweredby {
  font-family: "Arial Narrow", Arial;
  font-size: 0.6em;
  line-height: 0.6em;
  padding: 0 5px;
}

/*** media queries ***/
/* X-Small devices (phones, 480px and up) */
@media (min-width: 480px) {
  /* wrapper stays 480px wide past 480px wide and is kept centered */
  .wrapper {
    width: 480px;
    margin: 5% auto 0 auto;
  }
}
/* All other devices (768px and up) */
@media (min-width: 768px) {
  /* past 768px the layout is changed and the wrapper has a fixed width of 680px
  to accomodate both the header column and the content column */
  .wrapper {
    width: 680px;
  }

  /* the header column stays left and has a dynamic width with all contents
  aligned right */
  header {
    float: left;
    width: 46%;
    text-align: right;
  }

  .author-container h1,
  .logo-container,
  .tagline-container p {
    text-align: right;
  }

  main {
    width: 46%;
    margin-left: 54%;
    padding: 0;
  }
}
ul.product-list {
  padding: 0;
  list-style: none;
  margin-top: 0;
}
ul.product-list li {
  display: block;
  padding: 5px;
  background: #46433a;
  font-weight: bold;
  margin: 5px 0;
}
ul.product-list li a {
  color: #fff;
}

.text-center {
  text-align: center;
}

img.img-responsive {
  max-width: 100%;
}

.col-connect-left {
  text-align: right;
}

.col-connect-center {
  width: auto !important;
  padding-left: 1.5em !important;
  padding-right: 1.5em !important;
}

.col-connect-right {
  text-align: left;
}

#message-container {
  margin-top: 2rem;
  border: 1px solid;
  border-radius: 5px;
  padding: 1rem;
  background: #fff;
  display: none;
  text-align: center;
}

#message-container p {
  margin: 0;
}

#message-container.error {
  background: #efcbcb;
  color: #cc0000;
  border-color: #cc0000;
}

@media (min-width: 40rem) {
  .col-connect-center svg.icon-vertical {
    display: none;
  }
}

@media (max-width: 40rem) {
  .col-connect-left,
  .col-connect-right {
    text-align: center;
  }

  .col-connect-center {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .col-connect-center svg.icon-vertical {
    display: inline-block;
  }

  .col-connect-center svg.icon-horizontal {
    display: none;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}