@charset "UTF-8";
/* Variables */
/* Mostly from Minimal Mistakes Jekyll Theme */
/*
    Typography
    ========================================================================== */
/*
    Colors
    ========================================================================== */
/* links */
/*
    Breakpoints
    ========================================================================== */
/*
    Other
    ========================================================================== */
/* Mixins and functions */
/* ==========================================================================
   MIXINS
   ========================================================================== */
a:focus {
  /* Default*/
  outline: thin dotted #6f777d;
  /* Webkit*/
  outline: 5px auto #6f777d;
  outline-offset: -2px;
}

/* Core CSS */
/* ==========================================================================
   STYLE RESETS
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  /* apply a natural box layout model to all elements */
  box-sizing: border-box;
  background-color: #fff;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@media (min-width: 48em) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 64em) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 80em) {
  html {
    font-size: 22px;
  }
}

/* Remove margin */
body {
  margin: 0;
}

/* Selected elements */
::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

/* Display HTML5 elements in IE6-9 and FF3 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* Display block in IE6-9 and FF3 */
audio,
canvas,
video {
  display: inline-block;
}

/* Prevents modern browsers from displaying 'audio' without controls */
audio:not([controls]) {
  display: none;
}

a {
  color: rgb(41.3, 109.2, 130.2);
}

/* Apply focus state */
/* Remove outline from links */
a:hover,
a:active {
  outline: 0;
}

/* Prevent sub and sup affecting line-height in all browsers */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* img border in anchor's and image quality */
img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%; /* part 1: Set a maximum relative to the parent*/
  width: auto\9 ; /* IE7-8 need help adjusting responsive images*/
  height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* Prevent max-width from affecting Google Maps */
#map_canvas img,
.google-maps img {
  max-width: none;
}

/* Consistent form font size in all browsers, margin changes, misc */
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}

button,
input {
  line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/
  padding: 0;
  border: 0;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/
  cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
}

label,
select,
button,
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
  cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
}

input[type=search] { /* Appearance in Safari/Chrome*/
  box-sizing: border-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/
}

textarea {
  overflow: auto; /* remove vertical scrollbar in IE6-9*/
  vertical-align: top; /* readability and alignment cross-browser*/
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 400;
  color: #3d4144;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
@media print {
  body {
    font-size: 0.95em;
  }
}

h1, h2, h3, h4 {
  font-family: "Georgia", serif;
}

/*
   Global animation transition
   ========================================================================== */
b,
i,
strong,
em,
blockquote,
p,
q,
span,
figure,
img,
h1,
h2,
header,
input,
a,
tr,
td,
form button {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.resume-container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .resume-container {
    padding: 0;
  }
}

/* Components */
.header {
  display: flex;
  padding: 1em;
  gap: 1em;
  justify-content: space-between;
  border-bottom: solid 1px rgb(241.7, 242.5, 243.1);
}
@media only screen and (max-width: 768px) {
  .header {
    flex-direction: column;
  }
}
.header ul {
  flex-shrink: 0;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header ul li {
  padding: 0.25em;
}
@media only screen and (max-width: 768px) {
  .header ul {
    flex-flow: row wrap;
    column-gap: 1em;
  }
}
.header .download {
  display: none;
}
@media only screen {
  .header .download {
    display: block;
  }
}

.content {
  padding: 1em;
  display: grid;
  grid-template-columns: 20em auto;
  grid-template-rows: auto 1fr;
  gap: 2em;
}
@media print {
  .content {
    grid-template-columns: 15em auto;
  }
}
.content h2 {
  color: rgb(99.8, 103, 105.4);
}
.content .work-history {
  grid-column: 2;
  grid-row: 1;
  grid-row-end: 3;
}
@media only screen and (max-width: 768px) {
  .content .work-history {
    grid-column: 1;
    grid-column-end: 3;
    grid-row: 2;
  }
}
.content .tools {
  grid-column: 1;
  grid-row: 1;
}
@media only screen and (max-width: 768px) {
  .content .tools {
    grid-column: 1;
    grid-column-end: 3;
  }
}
.content .community-and-education {
  grid-column: 1;
  grid-row: 2;
}
@media only screen and (max-width: 768px) {
  .content .community-and-education {
    grid-column: 1;
    grid-column-end: 3;
    grid-row: 3;
  }
}
@media print {
  .content .community-and-education {
    font-size: 0.75em;
  }
}

.tools .category {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
}
.tools .category__name {
  font-weight: bold;
}
.tools .tool_list {
  padding: 0.5em 1em;
  border-radius: 4px;
  height: 100%;
  border: 1px solid rgb(241.7, 242.5, 243.1);
}
.tools h3 {
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgb(241.7, 242.5, 243.1);
}

@media print {
  .job:nth-last-of-type(-n+3) {
    display: none;
  }
}
.job .job__header {
  display: flex;
  gap: 0 1em;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid rgb(241.7, 242.5, 243.1);
  margin-bottom: 0;
}
@media only screen {
  .job .job__header {
    position: sticky;
    top: 0;
  }
}
@media (max-width: 600px) {
  .job .job__header {
    flex-direction: column;
  }
}
.job .job__years {
  width: 8em;
  text-align: right;
  flex-shrink: 0;
  color: #3d4144;
}
@media (max-width: 600px) {
  .job .job__years {
    width: 100%;
  }
}
.job h4 {
  color: gray;
}
.job .job__notes {
  font-size: 0.75em;
}
.job .job__notes ul {
  list-style: none;
  padding: 0;
  line-height: 1;
}
.job .job__company_description {
  font-size: 0.75em;
  color: rgb(99.8, 103, 105.4);
  margin-top: 1em;
}
.job ul {
  padding: 0 1em;
}

.community-and-education {
  break-inside: avoid;
}
.community-and-education .projects {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.project .project__header {
  background-color: #fff;
  border-bottom: 1px solid rgb(241.7, 242.5, 243.1);
  margin-bottom: 0;
}
@media only screen {
  .project .project__header {
    position: sticky;
    top: 0;
  }
}
.project .project__notes ul {
  list-style: none;
  padding: 0;
}

.footer {
  border-top: solid 1px rgb(241.7, 242.5, 243.1);
  padding: 1em;
  margin: 1em 0 0 0;
}
@media only print {
  .footer {
    margin-top: -12em;
  }
}
.footer .quote {
  font-style: italic;
  padding: 1em;
  width: 100%;
  text-align: right;
  font-size: 0.75em;
}
@media only print {
  .footer .quote {
    display: none;
  }
}
.footer .print-notice {
  display: none;
  font-size: 1.25em;
  font-weight: bold;
  color: rgb(99.8, 103, 105.4);
}
@media only print {
  .footer .print-notice {
    display: block;
  }
}

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