/*
 *  __                  __
 * /\ \                /\ \
 * \ \ \___   __  __   \_\ \     __
 *  \ \  _ `\/\ \/\ \  /'_` \  /'__`\
 *   \ \ \ \ \ \ \_\ \/\ \_\ \/\  __/
 *    \ \_\ \_\/`____ \ \___,_\ \____\
 *     \/_/\/_/`/___/> \/__,_ /\/____/
 *                /\___/
 *                \/__/
 *
 * Designed, built, and released under MIT license by @mdo. Learn more at
 * https://github.com/poole/hyde.
 */


/*
 * Contents
 *
 * Global resets
 * Topbar
 * Container
 * Reverse layout
 * Themes
 */


/*
 * Global resets
 *
 * Update the foundational and global aspects of the page.
 */

html {
  font-size: 16px;
  font-family: 'Avenir Next', 'HelveticaNeue-Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/*
 * Topbar
 *
 * Flexible banner for housing site name, intro, and "footer" content.
 */

.topbar {
  padding-top: 20px;
  padding-bottom: 20px;

  color: rgba(255,255,255,.5);
  box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.1);

  text-align: center;
  margin: auto;
}

/* topbar links */
.topbar a {
  color: #000;
  text-decoration: none;
}

/* About section */
.topbar-about {
  display: inline-block;
  margin: 0 auto;
  width: 600px;
}

.topbar-about h1 {
  text-align: left;
  color: #000;
  margin-top: 0;
  font-size: 60px;
  margin-bottom: 0px;
}

.topbar-description {
  color: #111;
  font-size: 18px;
  display: block;
  text-align:left;
  width: 390px;
  margin-bottom: 0px;
  margin-left: 4px;
}

a.topbar-about:hover,
a.topbar-about:focus {
  text-decoration: none;
}

/* topbar menu */
.topbar-menu {
  display: inline-block;
  margin: auto;
  width: 200px;
}

.topbar-menu-ul {
  padding-left: 0px;
  text-align: right;
  margin: 0 auto;
  max-width: 800px;
  font-size: 20px;
}

.topbar-menu-ul-item {
  display: block;
}

a.topbar-menu-ul-item:hover,
a.topbar-menu-ul-item:focus {
  text-decoration: underline;
}
.topbar-menu-ul-item.active {
  font-weight: bold;
}


@media (max-width: 820px) {
  .topbar {
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .topbar-about {
    display: block;
    margin: 0px;
    margin-left: 10px;
    width: 350px;
  }

  .topbar-about h1 {
    font-size: 25px;
  }

  .topbar-description {
    font-size: 15px;
    margin-left: 0px;
    width: 350px;
  }

  .topbar-menu {
    display: block;
    width: auto;
    margin-left: 0px;
    font-size: 18px;
    text-align: right;
  }

  .topbar-menu-ul {
    font-size: 18px;
    text-align: right;
  }
}


/* Container
 *
 * Align the contents of the site above the proper threshold with some margin-fu
 * with a 25%-wide `.topbar`.
 */

.content {
  padding: 0px;
  padding-top: 10px;
  max-width: 800px;
}

@media (max-width: 820px) {
  .content {
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
  }
}
