body {
  margin: 0;
  font-family: Bitter, "Times New Roman", serif;
  background: #fafbfd;
  color: #171728; }

a {
  color: #141433;
  border-bottom: 1px solid #141433;
  text-decoration: none; }

section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em 1.5em; }
  section .title {
    font-weight: bold;
    margin-bottom: 1em; }

section#header {
  margin-top: 50px; }
  section#header .title {
    font-size: 1.75em;
    font-weight: bold;
    margin-bottom: 0; }

section#projects {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 3rem auto 0;
  padding: 2em 0 4em;
  background: #171728;
  color: #fafbfd; }
  section#projects .project {
    position: relative;
    display: block;
    box-sizing: border-box;
    height: 75px;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.3);
    transition: all 200ms ease-out;
    z-index: 1; }
    section#projects .project:nth-of-type(odd) {
      background: #EF3E36; }
    section#projects .project:nth-of-type(even) {
      background: #19D3D0; }
    section#projects .project .title {
      margin-top: 27px;
      text-align: center;
      transition: all 200ms ease-out; }
    section#projects .project .logo {
      display: block;
      position: relative;
      height: 50px;
      margin: 18px auto;
      transition: all 200ms ease-out; }
    section#projects .project .preview {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transition: all 200ms ease-out; }
    section#projects .project:hover {
      width: 100%;
      height: 150px; }
      section#projects .project:hover .title {
        margin-top: 65px; }
      section#projects .project:hover .logo {
        margin-top: 54px; }
    section#projects .project.hidden {
      height: 0;
      width: 0; }
      section#projects .project.hidden .title {
        margin-top: 0;
        color: transparent; }
    section#projects .project.expanded {
      height: 500px;
      width: 100%; }
      section#projects .project.expanded .title,
      section#projects .project.expanded .logo {
        opacity: 0; }
      section#projects .project.expanded .preview {
        opacity: 1; }

section#outreach .contact {
  position: relative;
  margin-top: 10px; }
  section#outreach .contact label,
  section#outreach .contact input[type=submit] {
    display: block;
    margin-top: .5em; }
  section#outreach .contact input,
  section#outreach .contact textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    padding: .5em 1em;
    border: none;
    border-radius: 3px;
    font-family: Bitter, "Times New Roman", serif;
    font-size: 1em;
    background: #171728;
    color: #fafbfd; }
  section#outreach .contact input[type=submit] {
    cursor: pointer; }
    section#outreach .contact input[type=submit]:hover {
      background: #131322; }

section#footer {
  text-align: center;
  font-size: .7em;
  color: #b5b5b7; }

.waveSvg {
  position: fixed;
  top: -10px; }

.wavey .topWave {
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 10px;
  background: #171728;
  filter: url("#waveFilter");
  z-index: -1; }
  .wavey .topWave .wave {
    position: absolute;
    left: var(--position);
    background: #171728;
    border-radius: 100%;
    animation: wave-size var(--duration) ease-in infinite var(--delay), wave-move var(--duration) ease-in infinite var(--delay);
    transform: translate(-50%, 100%); }

@keyframes wave-size {
  0% {
    width: 0;
    height: 0; }
  10%, 75% {
    width: var(--size);
    height: var(--size); }
  100% {
    width: 0;
    height: 0; } }
@keyframes wave-move {
  0% {
    bottom: 0; }
  50% {
    bottom: var(--distance); }
  100% {
    bottom: 0; } }
section#projects .project.susrus {
  background: white;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3); }
  section#projects .project.susrus .title {
    width: 100px;
    padding: 10px;
    background: black;
    color: white;
    margin: 19px auto 0;
    letter-spacing: 1px; }
  section#projects .project.susrus:hover .title {
    margin-top: 55px; }
  section#projects .project.susrus .preview {
    color: #160F21; }
    section#projects .project.susrus .preview .top-title {
      position: absolute;
      top: 5px;
      left: 30px;
      padding: 0.5% 1%;
      font-size: 14px;
      font-weight: bold;
      border-bottom: 2px solid #7D7581; }
    section#projects .project.susrus .preview .tagline {
      width: 100%;
      text-align: center;
      font-size: 32px;
      margin: 25px auto 60px; }
      section#projects .project.susrus .preview .tagline > .data-rotator {
        display: inline-block;
        width: 200px;
        margin-top: 5px;
        padding: 5px 30px 9px;
        color: #F2F4F8;
        background: #160F21; }
    section#projects .project.susrus .preview .about {
      position: relative;
      padding-bottom: 100px;
      background: #160F21;
      color: #F2F4F8; }
      section#projects .project.susrus .preview .about:before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 50px;
        background-image: url("../images/susrusBorder.png");
        background-size: 100% 100%;
        background-repeat: no-repeat; }
      section#projects .project.susrus .preview .about:before {
        top: -50px; }
      section#projects .project.susrus .preview .about:after {
        bottom: -50px;
        transform: scaleY(-1); }
      section#projects .project.susrus .preview .about .header {
        padding: 20px 20% 5px;
        font-size: 20px;
        text-align: center; }
        section#projects .project.susrus .preview .about .header .highlight {
          width: 80px;
          margin: 5px auto;
          padding: 3px 20px 5px;
          color: #160F21;
          background-color: #F2F4F8; }
      section#projects .project.susrus .preview .about .description {
        padding: 20px 20% 50px;
        font-size: 14px;
        line-height: 150%; }

section#projects .project.amazon {
  font-family: Ubuntu, Helvetica, Arial, sans-serif;
  background: #232f3e; }
  section#projects .project.amazon .preview .splash {
    height: 250px;
    background-image: url("../images/Lab126Splash.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
    section#projects .project.amazon .preview .splash .header {
      position: absolute;
      box-sizing: border-box;
      top: 0;
      left: 200px;
      width: 200px;
      height: 50px;
      padding: 16px 0;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      letter-spacing: 1.2px;
      color: #222222;
      background: rgba(255, 255, 255, 0.65); }
      section#projects .project.amazon .preview .splash .header:after {
        content: '';
        position: absolute;
        top: 50px;
        left: 0;
        width: 0;
        height: 0;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-top: 30px solid rgba(255, 255, 255, 0.65); }
  section#projects .project.amazon .preview .about {
    padding: 20px 0;
    font-size: 14px;
    line-height: 150%;
    background: #fff;
    color: #000; }
    section#projects .project.amazon .preview .about > h3, section#projects .project.amazon .preview .about p {
      max-width: 850px;
      margin: 0 auto 10px; }

section#projects .project.bonusly {
  position: relative;
  background-image: url("../images/kiwiBonusly.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 65%; }
  section#projects .project.bonusly::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(45deg, rgba(40, 60, 191, 0), rgba(40, 60, 191, 0.25), rgba(0, 193, 177, 0.5), rgba(0, 193, 177, 0.75)); }
  section#projects .project.bonusly .logo {
    z-index: 2; }
  section#projects .project.bonusly.expanded, section#projects .project.bonusly.expanded:hover {
    background-size: auto;
    background-position: center -90%; }
    section#projects .project.bonusly.expanded .logo, section#projects .project.bonusly.expanded:hover .logo {
      position: relative;
      height: 40px;
      width: 120px;
      margin: 20px auto;
      padding-right: 680px;
      opacity: 1; }
    section#projects .project.bonusly.expanded .preview, section#projects .project.bonusly.expanded:hover .preview {
      position: absolute;
      top: 80px;
      bottom: 0;
      line-height: 1.4;
      font-family: "Open Sans", "Arial", "Helvetica Neue", Helvetica, sans-serif;
      color: #fff;
      z-index: 2; }
      section#projects .project.bonusly.expanded .preview .splash, section#projects .project.bonusly.expanded:hover .preview .splash {
        box-sizing: border-box;
        max-width: 800px;
        margin: 0 auto;
        padding-right: 400px;
        font-size: 110%;
        text-shadow: 0 1px 2px rgba(4, 8, 40, 0.5); }
        section#projects .project.bonusly.expanded .preview .splash .demo, section#projects .project.bonusly.expanded:hover .preview .splash .demo {
          position: absolute;
          top: -45px;
          right: -10px;
          height: 225px;
          width: 400px;
          border-radius: 3px;
          overflow: hidden; }
        section#projects .project.bonusly.expanded .preview .splash h1, section#projects .project.bonusly.expanded:hover .preview .splash h1 {
          margin: 0;
          font-size: 18px; }
        section#projects .project.bonusly.expanded .preview .splash p, section#projects .project.bonusly.expanded:hover .preview .splash p {
          margin-top: 10px;
          color: #C6CEFF; }
        section#projects .project.bonusly.expanded .preview .splash .button, section#projects .project.bonusly.expanded:hover .preview .splash .button {
          display: inline-block;
          margin: 20px 0 32px;
          padding: 15px 20px;
          font-size: 15px;
          text-decoration: none;
          border-radius: 8px;
          background-color: #3c6;
          color: #fff;
          text-shadow: 0 1px rgba(46, 53, 56, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 8px rgba(4, 8, 40, 0.1);
          transition: all 0.2s ease; }
          section#projects .project.bonusly.expanded .preview .splash .button:hover, section#projects .project.bonusly.expanded:hover .preview .splash .button:hover {
            background-color: #4bd278; }
      section#projects .project.bonusly.expanded .preview .about, section#projects .project.bonusly.expanded:hover .preview .about {
        width: 100%;
        padding: 15px 0 30px;
        font-size: 14px;
        background: #f6f7f9;
        z-index: 2; }
        section#projects .project.bonusly.expanded .preview .about .box, section#projects .project.bonusly.expanded:hover .preview .about .box {
          box-sizing: border-box;
          max-width: 800px;
          margin: 0 auto;
          padding: 10px 15px;
          background-color: #fff;
          color: #040828;
          border-radius: 12px;
          box-shadow: 0 2px 10px rgba(4, 8, 40, 0.08); }
          section#projects .project.bonusly.expanded .preview .about .box > h1,
          section#projects .project.bonusly.expanded .preview .about .box > p, section#projects .project.bonusly.expanded:hover .preview .about .box > h1,
          section#projects .project.bonusly.expanded:hover .preview .about .box > p {
            margin: 0 auto 10px;
            text-align: justify; }
          section#projects .project.bonusly.expanded .preview .about .box > p:last-of-type, section#projects .project.bonusly.expanded:hover .preview .about .box > p:last-of-type {
            margin-bottom: 0; }

section#projects .project.purplewall {
  background: white;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
  border: 10px solid white;
  font-family: Ubuntu, Helvetica, Arial, sans-serif; }
  section#projects .project.purplewall .logo {
    height: 45px;
    margin-top: 5px; }
  section#projects .project.purplewall:hover {
    border-width: 20px; }
    section#projects .project.purplewall:hover .logo {
      margin-top: 28px; }
  section#projects .project.purplewall.expanded, section#projects .project.purplewall.expanded:hover {
    border-width: 55px;
    overflow: visible; }
    section#projects .project.purplewall.expanded .logo, section#projects .project.purplewall.expanded:hover .logo {
      margin-top: -50px;
      opacity: 1; }
    section#projects .project.purplewall.expanded .preview .couch-background, section#projects .project.purplewall.expanded:hover .preview .couch-background {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      line-height: 1.5;
      background-color: #ccc;
      background-image: url("../images/purplewallSplash.jpg");
      background-size: cover;
      background-position: center;
      box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
      color: #303a30; }
      section#projects .project.purplewall.expanded .preview .couch-background h1, section#projects .project.purplewall.expanded .preview .couch-background h3, section#projects .project.purplewall.expanded:hover .preview .couch-background h1, section#projects .project.purplewall.expanded:hover .preview .couch-background h3 {
        text-align: center;
        font-weight: normal; }
      section#projects .project.purplewall.expanded .preview .couch-background h1, section#projects .project.purplewall.expanded:hover .preview .couch-background h1 {
        margin-top: 25px;
        font-size: 25px; }
      section#projects .project.purplewall.expanded .preview .couch-background h3, section#projects .project.purplewall.expanded:hover .preview .couch-background h3 {
        max-width: 500px;
        margin: 20px auto;
        font-size: 14px; }
      section#projects .project.purplewall.expanded .preview .couch-background .about, section#projects .project.purplewall.expanded:hover .preview .couch-background .about {
        box-sizing: border-box;
        width: 800px;
        margin: 65px auto;
        padding: 10px 30px;
        font-size: 14px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.7); }

section#projects .project.belzer {
  background-image: url("../images/mikeBelzerBackground.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  section#projects .project.belzer .logo {
    height: 44px;
    margin-top: 21px; }
  section#projects .project.belzer:hover .logo {
    height: 95px;
    margin-top: 27px; }
  section#projects .project.belzer.expanded .logo, section#projects .project.belzer.expanded:hover .logo {
    height: 70px;
    margin-top: 30px;
    opacity: 1; }
  section#projects .project.belzer.expanded .preview, section#projects .project.belzer.expanded:hover .preview {
    width: 800px;
    margin: 115px auto 20px;
    line-height: 1.5;
    text-align: justify;
    background-color: #222;
    color: #eee;
    border-radius: 10px;
    overflow: hidden; }
    section#projects .project.belzer.expanded .preview .splash-image, section#projects .project.belzer.expanded:hover .preview .splash-image {
      width: 100%;
      height: 200px;
      background-image: url("../images/boltHelicopter.jpg");
      background-size: cover;
      background-position: 50% 30%; }
    section#projects .project.belzer.expanded .preview .about, section#projects .project.belzer.expanded:hover .preview .about {
      padding: 10px 15px;
      font-size: 13px; }
      section#projects .project.belzer.expanded .preview .about p, section#projects .project.belzer.expanded:hover .preview .about p {
        margin: 5px 0; }
      section#projects .project.belzer.expanded .preview .about a, section#projects .project.belzer.expanded:hover .preview .about a {
        color: #eee;
        border-color: #eee; }

section#projects .project.living {
  background: #fefefc; }
  section#projects .project.living .resume {
    display: none;
    position: absolute;
    top: .5em;
    right: .5em;
    cursor: pointer; }
    section#projects .project.living .resume > .text {
      position: absolute;
      top: -.5em;
      right: 7em;
      width: 20em;
      height: auto; }
    section#projects .project.living .resume > .arrow {
      position: absolute;
      top: 1.5em;
      right: 4.5em;
      width: 15em;
      height: auto; }
    section#projects .project.living .resume > .paper {
      position: absolute;
      top: .8em;
      right: 1.4em;
      height: 3em;
      width: auto; }
    section#projects .project.living .resume > .circle {
      position: absolute;
      top: 0;
      right: 0;
      height: 5em;
      width: auto; }
  section#projects .project.living.expanded .logo, section#projects .project.living.expanded:hover .logo {
    width: 250px;
    height: auto;
    margin: 20px auto;
    padding-right: 550px;
    opacity: 1; }
  section#projects .project.living.expanded .preview, section#projects .project.living.expanded:hover .preview {
    max-width: 800px;
    margin: 0 auto;
    color: #706f6e; }
    section#projects .project.living.expanded .preview .subtitle, section#projects .project.living.expanded:hover .preview .subtitle {
      margin-top: 60px;
      font-size: 14px;
      font-weight: bold; }
    section#projects .project.living.expanded .preview .resume, section#projects .project.living.expanded:hover .preview .resume {
      display: block; }
    section#projects .project.living.expanded .preview .about, section#projects .project.living.expanded:hover .preview .about {
      margin-top: 30px; }
    section#projects .project.living.expanded .preview hr, section#projects .project.living.expanded:hover .preview hr {
      margin: 30px auto;
      border: 1px solid #e9e8e6; }
    section#projects .project.living.expanded .preview .living-projects, section#projects .project.living.expanded:hover .preview .living-projects {
      margin: 10px -10px; }
      section#projects .project.living.expanded .preview .living-projects h3, section#projects .project.living.expanded:hover .preview .living-projects h3 {
        margin: 10px 15px; }
      section#projects .project.living.expanded .preview .living-projects div, section#projects .project.living.expanded:hover .preview .living-projects div {
        display: inline-block;
        box-sizing: border-box;
        width: 250px;
        height: 130px;
        margin: 10px;
        background: linear-gradient(to top, #444, #bbb); }

section#projects .project.blog {
  background-image: url("../images/purplewallBackground.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 40%; }
  section#projects .project.blog .logo {
    margin-top: 12px;
    height: 43px;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7); }
  section#projects .project.blog:hover .logo {
    height: 70px;
    margin-top: 32px;
    padding: 10px 20px; }
  section#projects .project.blog.expanded .logo, section#projects .project.blog.expanded:hover .logo {
    height: 50px;
    margin-top: 20px;
    padding: 10px 20px;
    opacity: 1; }
  section#projects .project.blog.expanded .preview, section#projects .project.blog.expanded:hover .preview {
    box-sizing: border-box;
    width: 800px;
    margin: 100px auto 20px;
    padding: 20px 25px;
    background: #fafafa;
    color: #3a3c4a;
    border-radius: 10px; }
    section#projects .project.blog.expanded .preview h1, section#projects .project.blog.expanded:hover .preview h1 {
      margin: 0 auto 10px;
      font-size: 20px; }
    section#projects .project.blog.expanded .preview .splash-image, section#projects .project.blog.expanded:hover .preview .splash-image {
      height: 200px;
      width: 100%;
      background-image: url("../images/purplewall_couch.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 30% 35%;
      box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); }
    section#projects .project.blog.expanded .preview p, section#projects .project.blog.expanded:hover .preview p {
      font-size: 14px; }

section#projects .project.holmes {
  background-image: url("../images/holmesBackground.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  section#projects .project.holmes:hover .logo {
    height: 95px;
    margin-top: 32px; }
  section#projects .project.holmes.expanded .logo, section#projects .project.holmes.expanded:hover .logo {
    height: 95px;
    margin-top: 32px;
    opacity: 1; }
  section#projects .project.holmes.expanded .preview, section#projects .project.holmes.expanded:hover .preview {
    width: 800px;
    margin: 130px auto;
    color: #333; }
    section#projects .project.holmes.expanded .preview .splash-image, section#projects .project.holmes.expanded:hover .preview .splash-image {
      float: left;
      height: 260px;
      margin: 50px 20px 50px -65px; }
    section#projects .project.holmes.expanded .preview .about, section#projects .project.holmes.expanded:hover .preview .about {
      margin-top: 35px; }
      section#projects .project.holmes.expanded .preview .about h1, section#projects .project.holmes.expanded:hover .preview .about h1 {
        font-size: 20px; }
      section#projects .project.holmes.expanded .preview .about p, section#projects .project.holmes.expanded:hover .preview .about p {
        font-size: 14px; }

section#projects .project.csu {
  background: #1e4d2b; }
  section#projects .project.csu.expanded, section#projects .project.csu.expanded:hover {
    background: #fff; }
    section#projects .project.csu.expanded .preview, section#projects .project.csu.expanded:hover .preview {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      font-family: Ubuntu, Helvetica, Arial, sans-serif; }
      section#projects .project.csu.expanded .preview .csu-head, section#projects .project.csu.expanded:hover .preview .csu-head {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: #1e4d2b; }
        section#projects .project.csu.expanded .preview .csu-head .menu, section#projects .project.csu.expanded:hover .preview .csu-head .menu {
          display: inline-block;
          width: calc((100% - 800px) / 2);
          height: 100%;
          background: #b4c90a; }
        section#projects .project.csu.expanded .preview .csu-head .head-title, section#projects .project.csu.expanded:hover .preview .csu-head .head-title {
          display: inline-block;
          vertical-align: top;
          height: 100%; }
          section#projects .project.csu.expanded .preview .csu-head .head-title img, section#projects .project.csu.expanded:hover .preview .csu-head .head-title img {
            display: inline-block;
            vertical-align: middle;
            height: 60px;
            margin: 20px 20px;
            padding-right: 20px;
            border-right: 2px solid #fff; }
          section#projects .project.csu.expanded .preview .csu-head .head-title h3, section#projects .project.csu.expanded:hover .preview .csu-head .head-title h3 {
            display: inline-block;
            vertical-align: middle;
            font-weight: normal; }
      section#projects .project.csu.expanded .preview .splash, section#projects .project.csu.expanded:hover .preview .splash {
        position: relative;
        width: 800px;
        height: 300px;
        margin: 120px auto 2px;
        background: #1e4d2b; }
        section#projects .project.csu.expanded .preview .splash .image, section#projects .project.csu.expanded:hover .preview .splash .image {
          position: absolute;
          top: 0;
          left: 0;
          width: 450px;
          height: 100%;
          background-image: url("../images/kiwiFriend.png");
          background-size: cover;
          background-position: 30% 27%; }
        section#projects .project.csu.expanded .preview .splash .about, section#projects .project.csu.expanded:hover .preview .splash .about {
          position: absolute;
          box-sizing: border-box;
          top: 0;
          right: 0;
          width: 350px;
          padding: 13px 18px; }
          section#projects .project.csu.expanded .preview .splash .about h1, section#projects .project.csu.expanded:hover .preview .splash .about h1 {
            margin: 5px auto;
            font-size: 18px;
            font-weight: normal;
            color: #b4c90a; }
          section#projects .project.csu.expanded .preview .splash .about p, section#projects .project.csu.expanded:hover .preview .splash .about p {
            font-size: 13px;
            line-height: 1.3; }
      section#projects .project.csu.expanded .preview .external-link, section#projects .project.csu.expanded:hover .preview .external-link {
        position: relative;
        width: 800px;
        height: 60px;
        margin: 0 auto;
        background: #b4c90a; }
        section#projects .project.csu.expanded .preview .external-link .explore, section#projects .project.csu.expanded:hover .preview .external-link .explore {
          display: inline-block;
          padding: 21px 25px;
          color: #1e4d2b; }
        section#projects .project.csu.expanded .preview .external-link .csu-link, section#projects .project.csu.expanded:hover .preview .external-link .csu-link {
          position: absolute;
          display: block;
          top: 0;
          right: 0;
          width: 640px;
          padding: 21px 25px;
          background: #163724;
          color: #b4c90a;
          border: none; }

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