/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
* {
  box-sizing: border-box;
}

::-moz-selection {
  background: rgba(90, 161, 227, 0.2);
}

::selection {
  background: rgba(90, 161, 227, 0.2);
}

a::-moz-selection {
  color: #fff;
  background: rgba(120, 87, 227, 0.7);
}

a::selection {
  color: #fff;
  background: rgba(120, 87, 227, 0.7);
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  transition: background-color .6s ease-in;
}

body.home {
  background-color: #fff;
}

body.work {
  background-color: #190b44;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: normal;
}

#logo {
  position: fixed;
  top: 7.5rem;
  width: 12rem;
  opacity: 0.75;
  transform: perspective(400px) rotateY(18deg);
  transition: all 0.1s ease-in;
  perspective: 400px;
  transform-origin: left center;
  perspective-origin: left center;
}

#logo path {
  fill: #5aa1e3;
  transition: fill 0.2s ease-in;
}

#logo:hover {
  transform: rotateY(0deg) scale(1.05);
}

#logo:hover path {
  fill: #7857e3;
}

.page-content {
  margin: 8rem 0 0 18rem;
}

.page-content h1 {
  font-family: 'Shrikhand', cursive;
  font-size: 8rem;
  line-height: 0.9em;
}

.page-content h3 {
  margin: 0.8em 0 0 0;
  font-family: 'Patua One', sans-serif;
  font-size: 2rem;
  width: 44vw;
}

.page-content h3 a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
  text-shadow: 0px 2px 0px #fff, 3px 0px 0px #fff, -2px 0px 0px #fff;
  transition: color 0.2s ease-in;
}

.page-content h3 a::before {
  content: '';
  display: inline-block;
  position: absolute;
  pointer-events: none;
  background-color: #7858e3;
  height: 0.07em;
  width: 100%;
  bottom: 0.16em;
  transition: all 0.07s ease-in;
  opacity: 1;
  left: 0%;
  z-index: -1;
}

.page-content h3 a:hover {
  color: #9b84ea;
}

.page-content h3 a:hover::before {
  opacity: 0;
  left: 30%;
}

.page-content .canvas-button {
  position: absolute;
  display: block;
  opacity: 0.75;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  bottom: 3rem;
  right: 3rem;
}

.page-content .canvas-button svg {
  display: inline-block;
  vertical-align: middle;
}

.page-content .canvas-button svg path {
  transition: fill 0.2s ease-in;
}

#home h1 {
  color: #7857e3;
  display: inline-block;
  padding: 0.1em;
  margin: -0.1em;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(transparent, transparent), linear-gradient(to bottom, #5aa1e3, #7857e3);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
}

#home h3 {
  color: #7858e3;
}

#home #reseed-mountains svg path {
  fill: #7857e3;
}

#home #reseed-mountains:hover svg path {
  fill: #5aa1e3;
}

#work h1 {
  color: #fff;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#work h3 {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#work h3 a {
  text-shadow: none;
}

#work #spin-stars {
  transition: opacity 0.6s;
}

#work #spin-stars svg path {
  fill: #5aa1e3;
}

#work #spin-stars:hover svg path {
  fill: #7857e3;
}

.work #logo:hover {
  opacity: 1;
}

.work #logo:hover path {
  fill: #fff;
}

canvas {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 35em) {
  #logo {
    top: auto;
    bottom: 2rem;
  }
  #logo path {
    fill: #7857e3;
  }
  .page-content {
    margin: 2rem 1.5rem 0;
  }
  .page-content h1 {
    font-size: 3.25rem;
    line-height: 1em;
  }
  .page-content h1 br {
    display: none;
  }
  .page-content h3 {
    font-size: 1.6rem;
    width: calc(100% - 1.5rem);
  }
  .page-content h3 a {
    text-shadow: none;
  }
  .page-content .canvas-button {
    bottom: 1.25rem;
    right: 1.5rem;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

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