/**
 * IMPORTANT: Most of these are exposed as CSS variables in main.scss
 */
/**
 * Variables for spacing (like margin and padding) and sizing (like breakpoints
 * and content width)
 */
.site-header {
  position: fixed;
  top: 0px;
  width: 100%;
  text-align: left;
  background: var(--brand-bg-color);
  z-index: 5;
  font-size: 20px;
}
.site-header .header-main {
  display: inline-block;
}
.site-header ul {
  list-style: none;
  margin: 0;
}
.site-header ul li {
  display: inline;
}

.header-inside {
  box-sizing: border-box;
  height: 100%;
  padding: 15px 0;
  color: #FFFFFF;
  font-weight: 400;
}

.site-header a {
  color: #FFFFFF;
  border-radius: 8px;
  transition: color 0.2s, padding 0.2s, background 0.2s;
  padding: 5px 15px;
}
.site-header a, .site-header a:hover, .site-header a:focus {
  text-decoration: none;
}
.site-header a:hover, .site-header a:focus, .site-header a.hire-me {
  color: #404040;
  background-color: #FFFFFF;
}
.site-header a.name {
  font-weight: 600;
}
.site-header a.skip-to-main.sr-only {
  top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.site-header a.skip-to-main.sr-only:focus {
  left: 45px;
}
.site-header a:focus, .site-header button:focus {
  outline: dashed 3px #FFFFFF;
}

.header-buttons {
  float: right;
}

.header-buttons li + li {
  margin-left: 5px;
}

.menu-btn {
  display: none;
  box-sizing: border-box;
  cursor: pointer;
  width: 50px;
  padding: 5px;
  background: none;
  border: none;
}
.menu-btn img {
  display: block;
  height: 100%;
  width: 100%;
}

/**
 * Tablet-ish & mobile styling
 */
@media (max-width: 800px) {
  .header-inside {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/**
 * Mobile styling
 */
@media (max-width: 600px) {
  body {
    padding-top: 72px !important;
  }
  .menu-btn {
    display: block;
  }
  .site-header {
    height: 72px;
    transition: height 0.3s;
    overflow: hidden;
    font-size: 24px;
  }
  .site-header:not(.-open) .header-buttons {
    display: none;
  }
  .site-header.-open {
    height: 144px;
  }
  .site-header .header-inside {
    padding: 0;
  }
  .site-header .header-main {
    width: 100%;
    padding: 10px 0;
  }
  .site-header .header-buttons {
    padding: 10px 20px;
  }
  .site-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-buttons {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
  .header-buttons li + li {
    margin-left: 30px;
  }
}
.footer {
  width: 100%;
  padding: 15px 0px;
  bottom: 0px;
  left: 0;
  background-color: var(--dark-bg-color);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.social-bar {
  font-size: 0px;
  text-align: center;
  padding: 0;
}
.social-bar li {
  display: inline-block;
}

.social-bar a {
  display: block;
  text-decoration: none;
  margin: 0px 10px;
}

.social-bar .icon {
  display: inline-block;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10rem;
}

.social-bar .github {
  background-image: url("../images/social-media-icons/icons.svg");
  background-position: 0 0%;
}

.social-bar .twitter {
  background-image: url("../images/social-media-icons/icons.svg");
  background-position: 0 100%;
}

.social-bar .linkedin {
  background-image: url("../images/social-media-icons/icons.svg");
  background-position: 0 50%;
}

/**
 * A variable for any cross SCSS file animation variables, like default timing
 */
/**
 * IMPORTANT: Most of these are exposed as CSS variables in main.scss
 */
/**
 * Variables for spacing (like margin and padding) and sizing (like breakpoints
 * and content width)
 */
/**
 * Styling for the shapes that I have drifting around on the top of the homepage
 * and a few other pages
 */
.shape {
  position: absolute;
  z-index: -1;
}
.shape:nth-of-type(even) {
  animation: drift1 8s ease-in-out 0s infinite alternate;
}
.shape:nth-of-type(odd) {
  animation: drift2 8s ease-in-out 0s infinite alternate;
}
.shape:not(.-svg).-blue {
  background-color: #0059FF;
}
.shape:not(.-svg).-orange {
  background-color: #FF7400;
}
.shape:not(.-svg).-red {
  background-color: #D80000;
}
.shape:not(.-svg).-white {
  background-color: #FFFFFF;
}
.shape.-svg.-blue {
  color: #0059FF;
}
.shape.-svg.-orange {
  color: #FF7400;
}
.shape.-svg.-red {
  color: #D80000;
}
.shape.-svg.-white {
  color: #FFFFFF;
}
.shape.square, .shape.circle {
  width: 80px;
  height: 80px;
}
.shape.square {
  border-radius: 6px;
}
.shape.circle {
  border-radius: 1000px;
}
.shape.circle.-large {
  width: 200px;
  height: 200px;
}
.shape.triangle {
  width: 80px;
  height: 70px;
}
.shape.pentagon {
  width: 80px;
  height: 74px;
}

.shapes-hero {
  background-color: var(--brand-bg-color);
  padding: 9.375rem 0 6.25rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.shapes-hero .content-limiter {
  position: relative;
}
.shapes-hero h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
}
.shapes-hero h1 div {
  display: block;
  font-size: 1.5rem;
}
.shapes-hero .shape {
  z-index: 1;
  opacity: 0.5;
}
.shapes-hero .shape:nth-of-type(1) {
  animation-duration: 8.8s;
  bottom: -3rem;
  left: -15rem;
}
.shapes-hero .shape:nth-of-type(2) {
  top: -6rem;
  left: -2rem;
}
.shapes-hero .shape:nth-of-type(3) {
  animation-duration: 5.6s;
  bottom: -7rem;
  left: 40rem;
}
.shapes-hero .shape:nth-of-type(4) {
  animation-duration: 6.4s;
  top: -7rem;
  right: 0rem;
}
.shapes-hero .shape:nth-of-type(5) {
  animation-duration: 8.8s;
  bottom: -10rem;
  right: -20rem;
}

/**
 * Mobile styling for shapes and shape hero
 */
@media (max-width: 800px) {
  .shapes-hero {
    padding: 5rem 0 3rem;
    margin-bottom: 2rem;
  }
  .shapes-hero .shape:nth-of-type(2) {
    top: -4rem;
    left: -3rem;
  }
  .shapes-hero .shape:nth-of-type(3) {
    top: 5rem;
    left: 18rem;
  }
  .shapes-hero .shape:nth-of-type(4) {
    top: -4rem;
  }
}
/**
 * Declare Shape Drift Animations
 */
@keyframes drift1 {
  0% {
    transform: translate(-0.5rem, -1rem);
  }
  100% {
    transform: translate(0.5rem, 1rem);
  }
}
@keyframes drift2 {
  0% {
    transform: translate(0.5rem, 1rem);
  }
  100% {
    transform: translate(-0.5rem, -1rem);
  }
}
/**
 * Reset styles from: http://meyerweb.com/eric/tools/css/reset/
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Use CSS variables for main background and text color
 */
:root {
  --bg-color: #F3F3F3;
  --light-bg-color: #FFFFFF;
  --intense-bg-color: #FFFFFF;
  --bit-dark-bg-color: #E6E6E6;
  --dark-bg-color: #DCDCDC;
  --brand-bg-color: #D80000;
  --text-color: #272727;
  --text-color-faded: #686767;
  --text-color-dark: #404040;
  --brand-text-color: #A30000;
  --brand-text-color-focused: #700000;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1f1f1f;
    --intense-bg-color: #171717;
    --light-bg-color: #404040;
    --bit-dark-bg-color: #404040;
    --dark-bg-color: #404040;
    --brand-bg-color: #A30000;
    --text-color: #FFFFFF;
    --text-color-faded: #E6E6E6;
    --text-color-dark: #E6E6E6;
    --brand-text-color: #FF8A8A;
    --brand-text-color-focused: #FFA8A8;
  }
}
html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  margin: 0px;
  padding-top: 60px;
  background-color: var(--bg-color);
  line-height: 1.5;
  color: var(--text-color);
}

h1, h2, h3, h4 {
  font-weight: bold;
}

h1 {
  font-size: 2rem;
}
h1.-large {
  font-size: 3.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1.75rem;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.15rem;
  margin-top: 1rem;
}

h4, h5, h6 {
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

h6 {
  font-size: 0.8rem;
}

ul, ol {
  padding-left: 2.5rem;
}

ul.-spaced li, ol.-spaced li {
  margin-top: 0.5rem;
}

ul {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

pre {
  font-family: monospace;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

button {
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 800px) {
  h1 {
    font-size: 1.7rem;
  }
  h1.-large {
    font-size: 2.5rem;
  }
}
/**
 * If the user has expressed their preference for  reduced motion, then don't
 * use animations on any element.
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}
:target:not(main) {
  transition: box-shadow 0.3s 0.3s, padding-left 0.3s 0.3s, color 0.3s 0.3s;
  padding-left: 15px;
  box-shadow: -10px 0 var(--brand-text-color);
  color: var(--brand-text-color);
}

button:focus, a:focus {
  outline: dashed 3px #D80000;
}

a {
  text-decoration: none;
  color: var(--brand-text-color);
}
a:hover, a:focus {
  text-decoration: underline;
  color: var(--brand-text-color-focused);
}

p {
  margin: 1.5rem 0;
}

#main-content, .linked-heading, .anchor {
  scroll-margin-top: 80px;
}

.linked-heading:target .link-icon .placeholder {
  display: none !important;
}
.linked-heading:target .link-icon .main {
  display: inline !important;
}
.linked-heading .link-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 0.2em;
  height: 0.6em;
  margin-left: 0.2em;
}
.linked-heading .link-icon:not(:hover):not(:focus) .main {
  display: none;
}
.linked-heading .link-icon:hover .placeholder, .linked-heading .link-icon:focus .placeholder {
  display: none;
}
.linked-heading .link-icon:hover .main, .linked-heading .link-icon:focus .main {
  display: inline;
}
.linked-heading .link-icon img {
  display: inline;
  width: 1em;
  height: 1em;
  margin: 0;
}

/**
 * Generic page styles
 */
.page-container {
  padding-top: 50px;
  padding-bottom: 100px;
  box-sizing: border-box;
  min-height: calc(100vh - 135px);
  /**
   * Mobile styling
   */
}
.page-container.-no-padding {
  padding: 0;
}
.page-container.-no-padding-top {
  padding-top: 0;
}
@media (max-width: 600px) {
  .page-container {
    min-height: calc(100vh - 146px);
  }
}

.content-limiter {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.content-limiter.-page {
  max-width: 1000px;
}
.content-limiter.-thin {
  max-width: 800px;
}

.page-desc {
  margin-bottom: 30px;
}

.button-link {
  position: relative;
  top: 0px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  background: red;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
  border-bottom: solid #960000 4px;
}

.button-link:hover {
  top: 2px;
  border-bottom: solid #960000 2px;
}

.brand-color {
  color: #D80000;
}

/**
 * Mobile styling
 */
@media (max-width: 600px) {
  html {
    font-size: 22px;
  }
}
/**
 * Gallery Plugin Styling
 */
.overlay-transparent {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.img-base {
  width: 100%;
  text-align: center;
}

.img-container {
  display: inline-block;
  position: relative;
}

/* Style overlay info section */
#overlay-main .info-sect {
  position: absolute;
  width: 100%;
  color: white;
  bottom: 0px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
}

.info-sect.open {
  padding: 25px 10px;
}

.info-sect:not(.open) .title, .info-sect:not(.open) .description {
  display: none;
}

.info-sect .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.5em;
}

#overlay-main .icon.info {
  position: absolute;
  top: -50px;
  right: -1px;
  width: 50px;
  height: 50px;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 60% 50%;
  background-color: black;
  cursor: pointer;
  border-top-left-radius: 15px;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* On focus and hover make info icon fully visible */
#overlay-main .icon.info:hover, #overlay-main .icon.info:focus {
  opacity: 1;
}

/* And add box-shadow on focus to override outline */
#overlay-main .icon.info:focus {
  box-shadow: -2px -2px 0px 1px white;
  outline: none;
}

#overlay-main img {
  max-width: 90vw;
  max-height: 80vh;
}

#overlay-info {
  z-index: 20;
  color: white;
}

#overlay-info .title {
  font-size: 36px;
  font-weight: 600;
}

#overlay-info #close:hover {
  background: rgb(0, 0, 0);
}

#overlay-info .description {
  font-size: 20px;
}

#overlay-info .description a {
  color: #D80000;
  text-decoration: none;
}

.info-cont {
  width: 100%;
  max-width: 1000px;
}

#overlay-controls {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 11;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Make the images (arrows and close) and nav-dots still take pointer events */
#overlay-controls button, #overlay-controls .nav-dot {
  pointer-events: auto;
}

/* Style overlay buttons */
.over-btn {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50px;
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  width: 50px;
  height: 50px;
}

.over-btn img {
  width: 100%;
  height: 100%;
}

/* On hover and focus darken background */
.over-btn:hover, .over-btn:focus {
  background: rgb(0, 0, 0);
}

/* On focus add white box-shadow to replace outline */
.over-btn:focus {
  box-shadow: 0px 0px 0px 3px white;
  outline: none;
}

#overlay-controls #close, #overlay-info #close {
  z-index: 25;
  top: 10px;
  right: 10px;
}

#overlay-controls #left {
  left: 1%;
}

#overlay-controls #right {
  right: 1%;
}

#overlay-controls .nav-dot {
  display: inline-block;
  background-color: black;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0px 5px;
  box-sizing: border-box;
  cursor: pointer;
}

#overlay-controls .nav-dot:hover {
  border: solid 1px white;
}

#overlay-controls .nav-dot.active {
  background-color: white;
}

#overlay-controls .gallery-nav {
  width: 100vw;
  bottom: 0px;
  height: 30px;
  position: absolute;
  text-align: center;
}

/**
 * End Gallery Plugin Styling
 */
/****************************/
/****** GENERIC CLASSES *****/
/****************************/
.text-center {
  text-align: center;
}

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

.no-bold {
  font-weight: normal;
}

/**
 * Hides links or text we just want for screen readers
 */
.sr-only-cont {
  position: relative;
}
.sr-only-cont .sr-only {
  position: absolute;
  left: -200vw;
  pointer-events: none;
  background-color: #FFFFFF;
}
.sr-only-cont .sr-only:focus {
  left: 0;
  pointer-events: initial;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vertically-centered {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

code.inline, code.highlighter-rouge {
  font-family: monospace;
  background: var(--intense-bg-color);
  font-size: 0.9em;
  padding: 2px 5px;
  color: var(--brand-text-color);
  border-radius: 5px;
}

/* Code for fluid full width video from CSS Tricks:
https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
.video-cont {
  max-width: 700px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper.slides {
  padding-top: 29px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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