:root {
  --sun-offset: 0.08em;
}

* {
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-family: "Lato", "Segoe UI", "Avenir", "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5em;
  color: #202020;
  -webkit-font-smoothing: antialiased;
}

.top {
  padding-top: 1rem;
}

.name {
  white-space: nowrap;
  font-size: 8em;
}

.letter {
  display: inline-block;
  font-weight: 900;
  position: relative;
  line-height: 1em;
  transform-style: preserve-3d;
  perspective: 400;
  z-index: 1;
  color: rgba(0, 0, 0, 0);
}

.letter:before, .letter:after {
  position:absolute;
  content: attr(data-letter);
  transform-origin: top left;
  top:0;
  left:0;
}

.letter:after {
}

/* White overlay */
.letter:before {
  color: #fff;
  z-index: 3;
  -webkit-text-stroke: 1px #333;
  text-stroke: 1px #333;
}

/* Shadow */
.letter:after{
  color: #333;
  z-index:2;
  animation-duration: 30s;
  animation-name: day;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes day {
  0% {
    transform: translate(-0.08em, 0.08em);
  }

  50% {
    transform: translate(0em, 0.08em);
  }

  100% {
    transform: translate(0.08em, 0.08em);
  }
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.links {
  margin-bottom: 1rem;
}

.button {
  font-size: 2em;
  margin: 0.2em;
  border-bottom: 2px solid #fff;
  padding: 5 0px;
  color: #ccc;
  min-width: 120px;
  width: 15%;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.button:hover {
  cursor: pointer;
  border-color: #69D2E7;
  color: #69D2E7;
}

.main {
  margin: 3vh auto;
  display: flex;
  justify-content: space-between;
  max-width: 600px;
}

.projects {
  text-align: left;
  margin: 1em;
}

.projects a {
  display: block;
  font-size: 1em;
  padding-top: 1em;
}

.info {
  text-align: left;
  max-width: 400px;
  margin: 1em;
}

.header {
  font-size: 1.2em;
  text-transform: uppercase;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
  padding-left: 10px;
}

a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #a8a8a8;
  transition: all 0.2s linear;
}

.projects a {
  border-bottom: 2px solid #f0f0f0;
}

a:hover {
  border-bottom: 2px solid #69D2E7;
  color: #69D2E7;
}

.panel {
  border-left: solid 2px #fafafa;
  padding-left: 10px;
}

.info .panel {
  margin-top: 1em;
}

.last-updated {
  color: #ccc;
}

.jobs {
  list-style-type: disc;
  margin-left: 20px;
}

.jobs li {
  margin-top: 6px;
}

@media only screen and (max-width: 600px) {
  .main {
    flex-direction: column;
  }
}

/* if we go under 800px then use vw relative units
 * since the viewport is now tiny
 */
  @media only screen and (max-width: 800px) {
    .name {
      font-size: 14vw;
    }

    .letter:after {
      transform:
      translate(1vw, 1vw);
    }
  }