body,
form {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
}
h1,
h2,
h3,
h4 {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.5em;
}
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  display: block;
  text-transform: capitalize;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.5em;
}
.underline {
  text-decoration: underline;
}
.italic {
  font-style: italic;
}
/*  UNIVERSAL STYLE CLASSES - site-wide multi-purpose styles 
==========================*/
/* Theme styles & classes */
html {
  --bg: #fdfdfd;
  --fg: #1b1b1b;
  --blue: #109ceb;
  --grey: #e6e6e6;
  background-color: var(--bg);
  color: var(--fg);
}
html a {
  color: var(--fg);
}
html li {
  color: var(--fg);
}
html i {
  color: var(--fg);
}
html nav ul li a {
  border-bottom: 0.2em solid var(--grey);
}
html .transition {
  transition: all 700ms !important;
  transition-delay: 0 !important;
}
html .transition:before,
html .transition:after {
  transition: all 700ms !important;
  transition-delay: 0 !important;
}
html[data-theme='dark'] {
  --bg: #1b1b1b;
  --fg: #fdfdfd;
  --blue: #109ceb;
  --grey: #e6e6e6;
  background-color: var(--bg);
  color: var(--fg);
}
html[data-theme='dark'] a {
  color: var(--fg);
}
html[data-theme='dark'] li {
  color: var(--fg);
}
html[data-theme='dark'] i {
  color: var(--fg);
}
/* general style classes */
.block {
  display: block;
}
.inline {
  display: inline-block;
}
.top-gap {
  padding-top: 1.2rem;
}
.float-right {
  float: right;
}
.increase-line-h {
  line-height: 3rem;
}
/*  PAGE & SECTION SPECIFIC STYLES - single purpose styles styles 
==========================*/
/* === resume.php === */
.resumeSec {
  padding-top: 0;
}
.resumeSec ul {
  padding-left: 0;
}
.resumeSec ul li {
  padding-top: 1em;
}
.resumeSec dl dt {
  margin: .5em 0 .5em 0;
}
.resumeSec dl dd {
  margin-left: 0;
}
dl[title]::before,
ul[title]::before {
  content: attr(title);
  /* then add some nice styling as needed, eg: */
  display: block;
  font-weight: 600;
}
/* === index.php === */
.featured ul {
  font-size: 1.1em;
  color: #353535;
  list-style-type: none;
  width: 100%;
  align-items: center;
}
.featured ul li {
  vertical-align: top;
}
/* === footer include === */
footer {
  text-align: center;
}
footer ul {
  list-style: none;
  padding: .5em;
  margin: 0;
}
footer ul li {
  display: inline;
}
footer ul a {
  text-decoration: none;
}
footer i {
  font-size: 1.1em;
}
footer span {
  padding: .5em;
}
@media only screen and (min-width: 600px) {
  .featured ul {
    font-size: 1.4em;
    flex-direction: row;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  footer i {
    font-size: 1.5em;
  }
}
/* START navigation */
nav {
  font-size: 1rem;
}
nav ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
nav li {
  display: inline-block;
}
nav li a {
  display: block;
  text-align: center;
  padding: .7em .5em;
  text-decoration: none;
}
nav li a:hover {
  border-color: #6cc4f5;
}
nav li a.active {
  border-bottom: solid 0.25em #109ceb;
}
.logoArea a {
  color: #1b1b1b;
  text-decoration: none;
  font-size: 1.9em;
}
.logoArea span {
  font-size: 1.3em;
  color: #777;
  display: block;
}
@media (min-width: 400px) {
  nav {
    font-size: 1.1rem;
  }
}
@media (min-width: 900px) {
  header {
    font-size: 1.2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  nav ul li {
    float: left;
    margin: .4em;
    text-transform: uppercase;
  }
  nav ul li a {
    padding: 0.833em 1.25em;
  }
}
/* END navigation */

/*# sourceMappingURL=style.css.map */