@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap");
@-webkit-keyframes cursor-blink {
  0% {
    border-left: 0.08em solid var(--primary-color);
  }
  100% {
    border-left: none;
  }
}
@keyframes cursor-blink {
  0% {
    border-left: 0.08em solid var(--primary-color);
  }
  100% {
    border-left: none;
  }
}

:root {
  --primary-color: #0676d1;
  --link-color: #FF9500;
  --dp03-color: #FFF;
  --text-color: #000;
  --text-strok-black: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
  --text-stroke-white: 0 0 2px white, 0 0 2px white, 0 0 2px white, 0 0 2px white;
  --name-color: #35C759;
  --ruby-color: #701415;
  --scss-color: #C6538C;
  --html-color: #E34C26;
  --gherkin-color: #5B2063;
  --js-color: #4166df;
  --csharp-color: #188601;
  --c-color: #555555;
  --sqlite-color: #0D3B5A;
  --background-color: #FFF;
  --sun-color: #F7CB01;
  --moon-color: #0BDCD5;
  --city-color: #03C7BE;
  --occupation-color: #FF9500;
  --degree-type-color: #AF52DE;
  --degree-name-color: #FF2C55;
  --years-experience-color: #35C759;
  --filter-citadel-logo: invert(44%) sepia(20%) saturate(1861%) hue-rotate(171deg) brightness(89%) contrast(80%);
  --filter-jmu-logo: brightness(0) saturate(100%) invert(11%) sepia(43%) saturate(6639%) hue-rotate(268deg) brightness(82%) contrast(120%);
  --scrollbar-background: #F5F5F5;
  --scrollbar-thumb: #555;
}

* {
  padding: 0;
  margin: 0;
  background: var(--background-color);
  -webkit-transition: background .4s;
  transition: background .4s;
  scroll-behavior: smooth;
}

body {
  padding: 0em 1.2em 3em 1.2em;
  width: auto;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: var(--text-color);
}

body .nav {
  position: relative;
  margin-top: 1em;
  height: 2em;
}

body .nav .view-mode-btn {
  text-decoration: none;
}

body .nav .view-mode-toggle {
  position: relative;
  cursor: pointer;
  outline: none;
  float: right;
}

body .intro {
  font-size: 1.7em;
  position: relative;
  margin-top: 0.8em;
  font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
}

body .intro .container {
  width: 90%;
}

body .intro .container .intro-txt {
  text-align: center;
  position: absolute;
  top: 2px;
}

body .intro .container .intro-txt .typewrite {
  position: relative;
}

body .intro .container .intro-txt .typewrite .wrap {
  position: relative;
}

body .intro .container .intro-txt .typewrite .wrap span {
  color: var(--name-color);
}

body .intro .container .intro-txt .typewrite .wrap:after {
  content: '';
  -webkit-animation: cursor-blink 1s steps(2) infinite;
          animation: cursor-blink 1s steps(2) infinite;
}

body .intro .container .intro-txt h1 {
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
}

body .intro .container .intro-txt h4 {
  text-align: left;
}

body .intro .container .intro-txt-hidden {
  margin-left: -.1em;
  position: relative;
  visibility: hidden;
}

body .info-section {
  position: relative;
  width: auto;
  margin-top: 1em;
}

body .info-section .about-me .headshot {
  width: auto;
}

body .info-section .about-me .headshot .headshot-img {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 30px;
  margin: 0 auto;
  padding: 0;
}

body .info-section .about-me .about-me-txt h4 {
  font-weight: 400;
}

body .info-section .about-me .about-me-txt a {
  color: var(--link-color);
  text-decoration: none;
}

body .info-section .about-me .profession {
  color: var(--primary-color);
  font-weight: bold;
}

body .info-section .education .education-list {
  margin-left: -1.2em;
  margin-right: -1.2em;
  margin-top: -1em;
  position: relative;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  z-index: 6;
}

body .info-section .education .education-list .horz-scroll {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: 5px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  z-index: 7;
}

body .info-section .education .education-list .horz-scroll .card {
  display: inline-block;
  position: relative;
  margin-top: 1em;
  z-index: 5;
  scroll-snap-align: center;
}

body .info-section .education .education-list .horz-scroll .card .education-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 1fr;
      grid-template-columns: 70px 1fr;
  background: var(--dp03-color);
}

body .info-section .education .education-list .horz-scroll .card .education-card img {
  height: 90px;
  width: 90px;
  margin: auto 0;
  background: none;
}

body .info-section .education .education-list .horz-scroll .card .education-card .citadel_logo {
  -webkit-filter: var(--filter-citadel-logo);
          filter: var(--filter-citadel-logo);
}

body .info-section .education .education-list .horz-scroll .card .education-card .jmu_logo {
  -webkit-filter: var(--filter-jmu-logo);
          filter: var(--filter-jmu-logo);
}

body .info-section .education .education-list .link-to {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
}

body .info-section .work .link-to {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  z-index: 9;
}

body .info-section .projects {
  position: relative;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

body .info-section .projects .projects-list {
  top: 0;
  margin-left: -1.2em;
  margin-right: -1.2em;
  margin-top: -1em;
  z-index: 6;
}

body .info-section .projects .projects-list .horz-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .info-section .projects .projects-list .horz-scroll .card {
  margin-top: 1em;
  min-height: 300px;
  position: relative;
  z-index: 5;
  scroll-snap-align: center;
  -ms-flex-preferred-size: calc(95% - 3em);
      flex-basis: calc(95% - 3em);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

body .info-section .projects .projects-list .horz-scroll .card .preview {
  height: 200px;
  position: relative;
  border-radius: 20px;
  background-color: gray;
}

body .info-section .projects .projects-list .horz-scroll .card .preview .project-title {
  background-color: transparent;
}

body .info-section .projects .projects-list .horz-scroll .card .preview .project-title h1 {
  position: absolute;
  color: white;
  text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
  bottom: 0;
  margin-left: 5px;
  font-size: 3em;
  display: inline-block;
  background-color: transparent;
}

body .info-section .projects .projects-list .horz-scroll .card .preview video {
  height: 200px;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 8px;
}

body .info-section .projects .projects-list .horz-scroll .card .project-summary {
  background-color: transparent;
  min-height: 50px;
  margin: 1em .2em 0em .2em;
  overflow-wrap: break-word;
  white-space: normal;
}

body .info-section .projects .projects-list .horz-scroll .card .project-summary p {
  font-weight: 400;
  background-color: transparent;
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list {
  background-color: transparent;
  overflow-wrap: break-word;
  white-space: normal;
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .language-used {
  border-radius: 15px;
  display: inline-block;
  margin: 0.2em;
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .language-used h4 {
  color: white;
  padding: 5px 15px;
  border-radius: 10px;
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .ruby-used {
  background-color: var(--ruby-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .js-used {
  background-color: var(--js-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .html-used {
  background-color: var(--html-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .scss-used {
  background-color: var(--scss-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .gherkin-used {
  background-color: var(--gherkin-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .csharp-used {
  background-color: var(--csharp-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .c-used {
  background-color: var(--c-color);
}

body .info-section .projects .projects-list .horz-scroll .card .languages-used-list .sqlite-used {
  background-color: var(--sqlite-color);
}

body .info-section .contact .contact-icon {
  color: var(--name-color);
}

body .info-section .contact .contact-info h4 {
  font-weight: 400;
}

.dark-mode {
  --primary-color: rgb(67, 168, 250);
  --link-color: #FF9F0B;
  --name-color: #31D158;
  --background-color: #121212;
  --dp03-color: #242424;
  --text-color: #FFF;
  --city-color: #67D4CF;
  --occupation-color: #FF9F0B;
  --degree-type-color: #BF5AF2;
  --degree-name-color: #FF375F;
  --years-experience-color: #31D158;
  --filter-jmu-logo: brightness(0) saturate(100%) invert(43%) sepia(81%) saturate(574%) hue-rotate(236deg) brightness(86%) contrast(102%);
  --filter-citadel-logo: invert(40%) sepia(35%) saturate(810%) hue-rotate(170deg) brightness(101%) contrast(101%);
  --scrollbar-background: #555;
  --scrollbar-thumb: #F5F5F5;
}

.card {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1em;
  padding: 0.5em;
  border-radius: 15px;
  background: var(--dp03-color);
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card h4 {
  background-color: transparent;
}

.card .degree-info {
  background-color: transparent;
  text-align: center;
  margin: auto auto;
}

.card .degree-info h4 {
  font-weight: 400;
}

.card .degree-info .degree-type {
  font-weight: 600;
  text-align: center;
  color: var(--primary-color);
}

.horz-scroll {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: 5px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  z-index: 7;
}

.first-card {
  margin-left: 1.7em;
  margin-right: 1.7em;
  width: calc(95% - 3em);
}

.mid-card {
  margin-left: -1.2em;
  margin-right: 1.7em;
  width: calc(95% - 3em);
}

.last-card {
  margin-left: -1.2em;
  margin-right: 1.7em;
  width: calc(95% - 3em);
}

#scroll-standard::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: var(--scrollbar-background);
  margin-right: 1.7em;
  margin-left: 1.7em;
}

#scroll-standard::-webkit-scrollbar {
  width: 12px;
  height: 4px;
  background-color: var(--background-color);
  margin-right: 1em;
  margin-left: 1em;
}

#scroll-standard::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--scrollbar-thumb);
}

.chart-container {
  width: 400px;
  height: 300px;
  margin: 0 auto;
}

.moon-logo {
  opacity: 0;
  -webkit-transform: translateY(20%) rotateZ(50deg);
          transform: translateY(20%) rotateZ(50deg);
  background: transparent;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.sun-logo {
  opacity: 0;
  background-color: transparent;
  -webkit-transform: translateY(20%) rotateZ(100deg);
          transform: translateY(20%) rotateZ(100deg);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.fa-sun {
  background: -webkit-gradient(linear, left top, left bottom, from(#F3B11F), to(#DBD65A));
  background: linear-gradient(180deg, #F3B11F, #DBD65A);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.fa-moon {
  color: var(--moon-color);
}

.sun, .moon {
  font-size: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.moon {
  position: absolute;
  inset: 0;
}

.animate-sun {
  opacity: 1;
  -webkit-transform: translateY(0%) rotateZ(0deg);
          transform: translateY(0%) rotateZ(0deg);
}

.animate-moon {
  opacity: 1;
  -webkit-transform: translateY(0%) rotateZ(0deg);
          transform: translateY(0%) rotateZ(0deg);
}

.header {
  position: relative;
  margin-bottom: 2em;
  margin-top: 2em;
  z-index: 1;
}

.header .header-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.2em 1fr 1fr;
      grid-template-columns: 2.2em 1fr 1fr;
  font-size: 1.3em;
}

.header .header-title .header-icon {
  position: relative;
  margin: auto auto;
  font-size: 1.3em;
  color: var(--primary-color);
}

.header .header-title h2 {
  color: var(--text-color);
  font-weight: 600;
  font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
}

.header .header-title a {
  text-align: end;
  margin-top: auto;
  margin-bottom: 0.1em;
  color: var(--link-color);
  text-decoration: none;
}

.header .header-title a h5 {
  font-weight: 400;
}

.years-experience {
  font-size: 1.5em;
  font-weight: bold;
  fill: var(--text-color);
}

.years-experience-num {
  font-size: 5em;
  fill: var(--text-color);
}

.years-experience-desc {
  font-size: 1em;
  font-weight: bold;
  fill: var(--text-color);
}

.years-experience-company {
  font-size: 0.7em;
  font-weight: bold;
  fill: var(--text-color);
}

.years-experience-industry {
  font-size: 0.7em;
  font-weight: bold;
  fill: var(--text-color);
}

.selected-slice {
  fill: var(--primary-color);
}

.link {
  color: var(--link-color);
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

#city-name {
  color: var(--city-color);
}

#occupation-name {
  color: var(--occupation-color);
}

#degree-type {
  color: var(--degree-type-color);
}

#degree-name {
  color: var(--degree-name-color);
}

#years-experience {
  color: var(--years-experience-color);
}

@media only screen and (min-width: 1500px) {
  body .intro {
    text-align: left;
  }
  body .info-section {
    width: 50vw;
  }
  body .info-section .about-me {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px auto;
        grid-template-columns: 270px auto;
  }
  body .info-section .about-me .headshot {
    display: inline-block;
  }
  body .info-section .about-me .headshot .headshot-img {
    margin: 0;
    width: 250px;
    height: 250px;
    border-radius: 30px;
  }
  body .info-section .about-me .header {
    margin-top: 0em;
  }
  body .info-section .education .education-list .degree .school-logo-container {
    display: block;
  }
  body .info-section .education .education-list .degree .school-logo-container .school-icon {
    width: 150px;
    height: 150px;
  }
  .sun, .moon {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 799px) and (max-width: 1499px) {
  body .intro {
    text-align: left;
    margin: 1em 2em 1em 2em;
  }
  body .info-section {
    width: auto;
  }
  body .info-section .about-me {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px auto;
        grid-template-columns: 270px auto;
  }
  body .info-section .about-me .headshot {
    display: inline-block;
  }
  body .info-section .about-me .headshot .headshot-img {
    margin: 0;
    width: 250px;
    height: 250px;
    border-radius: 30px;
  }
  body .info-section .about-me .header {
    margin-top: 0em;
  }
  body .info-section .education .education-list .degree .school-logo-container {
    display: block;
  }
  body .info-section .education .education-list .degree .school-logo-container .school-icon {
    width: 100px;
    height: 100px;
  }
  .sun, .moon {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 600px) and (max-width: 799px) {
  body .intro {
    margin: 1em 2em 0.5em 2em;
  }
  body .intro .container .intro-txt {
    font-size: .75em;
  }
  body .intro .container .intro-txt-hidden {
    font-size: .75em;
  }
  body .info-section .education .education-list .degree .school-logo-container {
    display: block;
  }
  body .info-section .education .education-list .degree .school-logo-container .school-icon {
    width: 100px;
    height: 100px;
  }
  .sun, .moon {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 599px) {
  body .intro {
    margin-bottom: 0.5em;
  }
  body .intro .container .intro-txt {
    font-size: .75em;
  }
  body .intro .container .intro-txt-hidden {
    font-size: .75em;
  }
}

@media screen and (orientation: portrait) {
  body .intro .container .intro-txt {
    font-size: .75em;
  }
  .sun, .moon {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=main.css.map */