@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

body, body > header {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #fdfdfd;
  font-family: "Roboto", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
  background-color: #fdfdfd;
}
header.mini {
  padding: 0.6rem 2rem;
}
header.mini nav ul li a:after {
  top: 90%;
}
header:not(.no-transition) {
  transition: padding 0.1s ease;
}
header a {
  color: inherit;
  text-decoration: none;
  display: block;
}
header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.45px;
  color: #333;
}
header h1 span {
  color: #e93434;
}
header .button-hamburger {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  display: none;
}
header .button-hamburger img {
  width: 32px;
}
header nav ul {
  list-style: none;
}
header nav ul li {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1rem;
  color: #333;
}
header nav ul li a {
  padding: 1rem;
  position: relative;
}
header nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0%;
  height: 1px;
  background-color: #333;
  transition: width 0.1s ease-out;
}
header nav ul li a:hover:after {
  width: 100%;
}

header {
  z-index: 2;
}

section.hero > div {
  z-index: 3;
}

div.anchor {
  height: 0;
  position: relative;
  top: -68px;
}

h1, h2 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 3.6rem;
  margin-left: -4px;
}

h2 {
  font-size: 1.8rem;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

section.hero {
  background-color: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  position: relative;
}
section.hero .hero-inner {
  font-family: "Montserrat", sans-serif;
  transform: translateY(-10vh);
  background-color: #fdfdfd 55;
}
section.hero .hero-inner p {
  color: #444;
  font-size: 1rem;
}
section.hero .hero-inner h1 {
  color: #333;
  font-size: 5rem;
  margin-left: -6px;
  margin-bottom: 4px;
}
section.hero .hero-inner .links {
  margin-top: 18px;
  display: flex;
  align-items: center;
}
section.hero .hero-inner .links .social-media {
  margin-right: 24px;
}
section.hero .hero-inner .links .social-media img {
  width: 40px;
  margin-right: 16px;
  transition: transform 0.1s ease;
}
section.hero .hero-inner .links .social-media img:hover {
  transform: scale(1.1);
}
section.hero .hero-inner .links .social-media .hero-email {
  display: inline-flex;
  align-items: center;
}
section.hero .hero-inner .links .social-media .hero-email:hover {
  padding-right: 6rem;
}
section.hero .hero-inner .links .social-media .hero-email:hover .hero-email-text {
  display: block;
}
section.hero .hero-inner .links .social-media .hero-email-text {
  text-decoration: none;
  color: #444;
  display: none;
}
section.hero .hero-inner .links a.project-link {
  font-size: 1.1rem;
  color: #444;
  text-decoration: none;
  padding: 16px 0;
}
section.hero .hero-inner .links a.project-link:hover {
  text-decoration: underline;
}
section.hero .hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, -50%) rotateZ(45deg);
  width: 36px;
  height: 36px;
  cursor: pointer;
}
section.hero .hero-scroll-indicator:before, section.hero .hero-scroll-indicator:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-right: 4px solid #444;
  border-bottom: 4px solid #444;
  opacity: 1;
  bottom: 0;
  right: 0;
}
section.hero .hero-scroll-indicator:before {
  animation: fade-scroll 2s linear infinite;
}
section.hero .hero-scroll-indicator:after {
  animation: hit-rebound 2s linear infinite;
}

@keyframes fade-scroll {
  0% {
    bottom: 40px;
    right: 40px;
    opacity: 0;
  }
  18% {
    bottom: 0px;
    right: 0px;
    opacity: 0.8;
  }
  23% {
    opacity: 0;
  }
}
@keyframes hit-rebound {
  0%, 16% {
    bottom: 0px;
    right: 0px;
  }
  22% {
    bottom: -4px;
    right: -4px;
  }
  28% {
    bottom: 0px;
    right: 0px;
  }
}
section.about {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  background-color: #fdfdfd;
  color: #333;
}
section.about .about-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vh 0;
}
section.about .about-section .about-section-inner {
  width: 90%;
}
section.about .about-section h1 {
  margin-bottom: 1.6rem;
}
section.about .about-section h2 {
  margin-bottom: 0.6rem;
}
section.about .about-section p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  z-index: 1;
  margin-bottom: 1rem;
}
section.about .about-section p img.marker-icon {
  width: 14px;
  transform: translateY(2px);
  margin: 0 0.1em;
}
section.about .about-section b {
  display: inline-block;
  position: relative;
  padding: 0 6px 3px 5px;
  font-weight: normal;
  z-index: 1;
}
section.about .about-section b:after {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 2px;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(253, 253, 253, 0) 80%, rgb(255, 255, 255) 100%), linear-gradient(90deg, rgba(255, 12, 121, 0) 0%, rgb(255, 12, 121) 10%, rgb(0, 212, 255) 90%, rgba(0, 212, 255, 0) 100%);
}
section.about .about-section ul li {
  font-weight: bold;
  line-height: 1.6rem;
}
section.about .about-section h1, section.about .about-section h2, section.about .about-section p, section.about .about-section ul, section.about .about-section .about-section-links {
  text-align: center;
}
section.about .about-section .about-section-links {
  margin: 1.6rem;
}
section.about .about-section .about-section-links span {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.4px;
}
section.about .about-section .about-section-links span:not(:last-of-type):after {
  content: "•";
  display: inline-block;
  margin: 0 1rem;
  transform: scale(1.6);
}
section.about .about-section .about-section-links span a {
  color: inherit;
  text-decoration: none;
}
section.about .about-section .tech-list {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
section.about .about-section .tech-list .tech {
  position: relative;
  color: #444;
  text-decoration: none;
}
section.about .about-section .tech-list .tech:hover:after {
  top: 100%;
  opacity: 1;
}
section.about .about-section .tech-list .tech:after {
  content: attr(title);
  font-weight: bold;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: top 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
section.about .about-section .tech-list .tech img {
  max-width: 140px;
  max-height: 80px;
  padding: 20px;
  filter: grayscale(50%);
  transition: filter 0.1s ease, transform 0.1s ease-out;
}
section.about .about-section .tech-list .tech img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

section.project {
  min-height: 800px;
  display: flex;
}
section.project:nth-of-type(odd) {
  flex-direction: row-reverse;
}
section.project .project-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.project .project-section .preview-image {
  box-shadow: inset -80px 0 40px -20px #fdfdfd;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
section.project .project-section .info {
  max-width: 80%;
  color: #333;
}
section.project .project-section .info > .info-title,
section.project .project-section .info > div {
  margin-bottom: 0.8rem;
}
section.project .project-section .info .info-title {
  display: block;
  color: inherit;
  text-decoration: none;
}
section.project .project-section .info .info-title h1 {
  position: relative;
}
section.project .project-section .info .info-title h1:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 100px;
  height: 16px;
  z-index: -1;
  background-color: #aaa;
}
section.project .project-section .info .info-description {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
section.project .project-section .info .info-technology ul li {
  display: inline-block;
  padding: 1rem;
}
section.project .project-section .info .info-technology ul li:first-of-type {
  margin-left: -1rem;
}
section.project .project-section .info .info-links {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}
section.project .project-section .info .info-links .info-link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  padding: 10px;
  font-size: 1.2rem;
}
section.project .project-section .info .info-links .info-link span {
  position: relative;
  margin-top: -2%;
}
section.project .project-section .info .info-links .info-link span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0%;
  height: 1px;
  background-color: #333;
  transition: width 0.1s ease-out;
}
section.project .project-section .info .info-links .info-link span:hover:after {
  width: 100%;
}
section.project .project-section .info .info-links .info-link:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  filter: invert(82%);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.4em;
}
section.project .project-section .info .info-links .info-link.repo-link:before {
  background-image: url("/assets/images/icons/code.svg");
}
section.project .project-section .info .info-links .info-link.demo-link:before {
  background-image: url("/assets/images/icons/globe.svg");
}
section.project .project-section .info .info-links .info-link.doc-link:before {
  background-image: url("/assets/images/icons/document.svg");
}
section.project.shoutout .info .info-title h1:before {
  background-color: #ef3a95;
}
section.project.shoutout .preview-image {
  background-image: url("/assets/images/previews/shoutout.png");
  background-size: 90%;
}
section.project.bonk-skins .info .info-title h1:before {
  background-color: #00ccb8;
}
section.project.bonk-skins .preview-image {
  background-image: url("/assets/images/previews/bonkskins-preview.png");
  background-size: cover;
}
section.project.reddit-bot .info .info-title {
  position: relative;
}
section.project.reddit-bot .info .info-title:before {
  content: "Unofficial";
  position: absolute;
  left: 0px;
  bottom: 100%;
  font-size: 0.9rem;
}
section.project.reddit-bot .info .info-title h1:before {
  background-color: #ff4500;
}
section.project.reddit-bot .preview-image {
  background-image: url("/assets/images/previews/reddit.png");
  background-size: 18%;
}
section.project.strat-roulette .info {
  max-width: 90%;
}
section.project.strat-roulette .info .info-title h1:before {
  background-color: #fd9d24;
}
section.project.strat-roulette .preview-image {
  background-image: url("/assets/images/previews/stratroulette-preview.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
}
section.project.game-engine .info .info-title h1:before {
  background-color: #00b7ff;
}
section.project.game-engine .preview-image {
  background-image: url("/assets/images/previews/whirl.png");
  background-size: 54%;
}

section.contact {
  min-height: 200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
section.contact h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #333;
}
section.contact .contact-email a {
  display: flex;
  align-items: center;
  color: #444;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
section.contact .contact-email a:hover {
  text-decoration: underline;
}
section.contact .contact-email a:hover img {
  transform: scale(1.1);
}
section.contact .contact-email a img {
  width: 40px;
  margin-right: 16px;
  transition: transform 0.1s ease;
}
section.contact .contact-email a span {
  font-size: 1.4rem;
}

@media (max-width: 1600px) {
  header {
    background-color: #fdfdfd;
    border-bottom: 1px solid #999999;
    z-index: 5;
  }
}
@media (max-width: 950px) {
  html,
  body {
    overflow-x: hidden;
  }
  header.mini {
    padding: 0.4rem 2rem;
  }
  header nav:after {
    content: "";
    background-color: rgba(40, 40, 40, 0.8);
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
  }
  header nav ul li {
    position: relative;
    display: block;
    text-align: right;
    background-color: #fdfdfd;
    font-size: 1.2rem;
    border-bottom: 1px solid #999999;
    z-index: 1;
  }
  header nav ul li:after {
    display: none;
  }
  header nav ul li a {
    padding: 1rem 1rem;
  }
  header .button-hamburger {
    display: block;
  }
  header .button-hamburger + nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
  }
  header .button-hamburger + nav li {
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  header .button-hamburger + nav li:nth-child(1) {
    transition-delay: 0.1s;
  }
  header .button-hamburger + nav li:nth-child(2) {
    transition-delay: 0.2s;
  }
  header .button-hamburger + nav li:nth-child(3) {
    transition-delay: 0.3s;
  }
  header .button-hamburger + nav li:nth-child(4) {
    transition-delay: 0.4s;
  }
  header .button-hamburger.expanded + nav {
    opacity: 1;
    pointer-events: auto;
  }
  header .button-hamburger.expanded + nav li {
    opacity: 1;
  }
  main.content {
    overflow-y: hidden;
  }
  section.hero {
    min-height: 95vh;
  }
  section.hero .hero-inner {
    max-width: 80vw;
  }
  section.hero .hero-inner h1 {
    font-size: 3rem;
  }
  section.about {
    flex-direction: column;
    padding: 30px 0;
  }
  section.about > div:last-of-type {
    margin-bottom: 0 !important;
  }
  section.about .about-section {
    margin: 5vh 0 !important;
  }
  section.about .about-section p {
    margin-bottom: 1.6rem;
  }
  section.about .about-section-links {
    line-height: 1.6rem;
  }
  section.about .about-section-links span {
    display: block !important;
  }
  section.about .about-section-links span:after {
    display: none !important;
  }
  section.about .tech-list {
    max-width: 100% !important;
  }
  section.about .tech-list .tech img {
    max-width: 80px !important;
    padding: 20px 10px !important;
  }
  section.project {
    flex-direction: column !important;
    align-items: stretch;
    min-height: unset;
  }
  section.project > div:nth-of-type(2) {
    flex: 1;
    margin-top: 2em;
    margin-bottom: 2em;
  }
  section.project .project-section .info-technology,
  section.project .project-section .info-links {
    margin-top: 10px !important;
  }
  section.project .project-section .info-technology {
    text-align: center;
  }
  section.project .project-section .info-technology ul li {
    padding: 0.4rem !important;
  }
  section.project .project-section .preview-image {
    height: 40vh !important;
    box-shadow: inset 0px -50px 30px -20px #fdfdfd;
  }
}
@media (max-width: 950px) and (max-width: 950px) and (min-width: 420px) {
  section.project.shoutout .preview-image {
    background-size: 50%;
  }
}
@media (max-width: 950px) {
  section.contact {
    flex-direction: column;
  }
  section.contact h1 {
    font-size: 2.8rem;
  }
  section.contact .hero-email-text {
    font-size: 1.2rem !important;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}

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