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


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


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

html {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
}
/*@media (min-width: 48em) {
  html {
    font-size: 16px;
  }
}*/
@media (min-width: 40em) {
  html {
    font-size: 20px;
  }
}

/*
 * Sidebar
 *
 * Flexible banner for housing site name, intro, and "footer" content. Starts
 * out above content in mobile and later moves to the side with wider viewports.
 */

.sidebar {
  text-align: center;
  color: rgba(255,255,255,.5);
  background-color: #202020;
  /*custom*/
  padding: 2rem 1rem;
}
@media (min-width: 48em) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 14rem;
    text-align: left;
  }
}

/* Sidebar links */
.sidebar a {
  color: #fff;
}

/* About section */
@font-face{
  font-family: Comfortaa-Regular;
  src: url(Comfortaa-Regular.ttf);
}
@font-face{
  font-family: Comfortaa-Light;
  src: url(Comfortaa-Light.ttf);
}
@font-face{
  font-family: Comfortaa-Bold;
  src: url(Comfortaa-Bold.ttf);
}

.sidebar-about h1 {
  color: #fff;
  margin-top: 0;
  font-family: 'Comfortaa-Bold';
  font-size: 3.25rem;
}

/* Sidebar nav */
.sidebar-nav {
  margin-bottom: 1rem;
}
.sidebar-nav-item {
  display: block;
  line-height: 1.75;
}
a.sidebar-nav-item:hover,
a.sidebar-nav-item:focus {
  text-decoration: underline;
}
.sidebar-nav-item.active {
  font-weight: bold;
}

/* Sticky sidebar
 *
 * Add the `sidebar-sticky` class to the sidebar's container to affix it the
 * contents to the bottom of the sidebar in tablets and up.
 */

@media (min-width: 48em) {
  .sidebar-sticky {
    position: absolute;
    right:  1rem;
    bottom: 1rem;
    left:   1rem;
  }
  .sidebar-sticky-holder {
    position: fixed;
    bottom: 1rem;
  }
}


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

 /*center the main content on about page */
 html, .container, .box1{
    height: 100%;
 }
 body{
   height: 95%;
 }

 .box1 {
    display: flex;
    align-items: center;
 }

@media (min-width: 50em) {
  .content {
    max-width: 42rem;
    margin-left: 22rem;
    margin-right: 4rem;
  }
  .page{
    width: 36em;
  }
}

@media (min-width: 70em) {
  .content {
    margin-left: 22rem;
    margin-right: 4rem;
  }
  .page{
    width: 50em;
  }
}

@media (min-width: 92em) {
  .content {
    margin-left: 22rem;
    margin-right: 4rem;
  }
  .page{
    width: 68em;
  }
}

.portal{
  width: 250px;
  display: block;
  margin: 0 auto;
  border-radius: 300px;
}

.credits{
  font-size: .85em;
  font-style: italic;
  line-height: .25;
}

.contact{
  font-weight: lighter;
  line-height: .5;
  display: inline;
  margin-right: 20px;
}

.social{
  text-align: center;
  padding-top: 1em;
}

/*
 * Reverse layout
 *
 * Flip the orientation of the page by placing the `.sidebar` on the right.
 */

@media (min-width: 48em) {
  .layout-reverse .sidebar {
    left: auto;
    right: 0;
  }
  .layout-reverse .content {
    margin-left: 2rem;
    margin-right: 18rem;
    height: 100%;
  }
}

@media (min-width: 64em) {
  .layout-reverse .content {
    margin-left: 2rem;
    margin-right: 18rem;
    height: 100%;
  }
}

/*
 * Themes
 * As of v1.1, Hyde includes optional themes to color the sidebar and links
 * within blog posts. To use, add the class of your choosing to the `body`.
 */

/* Base16 (http://chriskempson.github.io/base16/#default) */

/* Red */
.theme-base-08 .sidebar {
  background-color: #ac4142;
}
.theme-base-08 .content a,
.theme-base-08 .related-posts li a:hover {
  color: #ac4142;
}

/* Orange */
.theme-base-09 .sidebar {
  background-color: #d28445;
}
.theme-base-09 .content a,
.theme-base-09 .related-posts li a:hover {
  color: #d28445;
}

/* Yellow */
.theme-base-0a .sidebar {
  background-color: #f4bf75;
}
.theme-base-0a .content a,
.theme-base-0a .related-posts li a:hover {
  color: #f4bf75;
}

/* Green */
.theme-base-0b .sidebar {
  background-color: #90a959;
}
.theme-base-0b .content a,
.theme-base-0b .related-posts li a:hover {
  color: #90a959;
}

/* Cyan */
.theme-base-0c .sidebar {
  background-color: #75b5aa;
}
.theme-base-0c .content a,
.theme-base-0c .related-posts li a:hover {
  color: #75b5aa;
}

/* Blue */
.theme-base-0d .sidebar {
  background-color: #6a9fb5;
}
.theme-base-0d .content a,
.theme-base-0d .related-posts li a:hover {
  color: #6a9fb5;
}

/* Magenta */
.theme-base-0e .sidebar {
  background-color: #aa759f;
}
.theme-base-0e .content a,
.theme-base-0e .related-posts li a:hover {
  color: #aa759f;
}

/* Brown */
.theme-base-0f .sidebar {
  background-color: #8f5536;
}
.theme-base-0f .content a,
.theme-base-0f .related-posts li a:hover {
  color: #8f5536;
}

/* cerulean blue */
.theme-base-0g .sidebar {
  background-color: #0F3CA5;
}
.theme-base-0g .content a,
.theme-base-0g .related-posts li a:hover {
  color: #FFF;
}


/*custom styles for resume*/

/* Diagonal stacked paper effect */
.paper {
  width: 75%;
  padding: 30px 50px;
  border: 1px solid gray;
  border-radius: 2px;
  background-color: #fff;
  /* Need position to allow stacking of pseudo-elements */
  position: relative;
  /* Padding for demo purposes */

}

.paper,
.paper::before,
.paper::after {
  /* Add shadow to distinguish sheets from one another */
  box-shadow: 2px 1px 1px rgba(0,0,0,0.15);
}

.paper::before,
.paper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eee;
}

/* Second sheet of paper */
.paper::before {
  left: 7px;
  top: 5px;
  z-index: -1;
}

/* Third sheet of paper */
.paper::after {
  left: 12px;
  top: 10px;
  z-index: -2;
}

.paper h3 {
  margin: 0;
  color: #0F3CA5;
}
.paper p, .paper li {
  font-size: 16px;
  margin: 0;
  line-height: 1.25;
}

.res-bold{
  font-weight: bold;
}

.res-italic{
  font-weight: normal;
  font-style: italic;
}

.res-dates{
  font-size: 14px;
  color: grey;
}

.break-below{
  padding-bottom: 15px;
}

.download {
  background: #0F3CA5;
  background-image: -webkit-linear-gradient(top, #3498db, #0F3CA5);
  background-image: -moz-linear-gradient(top, #3498db, #0F3CA5);
  background-image: -ms-linear-gradient(top, #3498db, #0F3CA5);
  background-image: -o-linear-gradient(top, #3498db, #0F3CA5);
  background-image: linear-gradient(to bottom, #3498db, #0F3CA5);
  -webkit-border-radius: 14;
  -moz-border-radius: 14;
  border-radius: 8px;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.download:hover {
  background: #3cb0fd;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
  border: none;
}

.web-dev{
  display: inline-block;
}

.modeling{
  display: none;
}

#dev-heading, #modeling-heading{
  display: inline-block;
  cursor: default;
}

#dev-heading{
  margin-right: 50px;
  text-decoration: underline;
}

.top-project{
  vertical-align: top;
}
