/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

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;
}

.block {
  display: block;
}

.font-light, .small {
  font-weight: 300;
}

.font-medium, .big {
  font-weight: 500;
}

.font-54, .big {
  font-size: 3.6rem;
}

.font-36, .small {
  font-size: 2.5rem;
}

.btn {
  box-shadow: -4px 5px 6px rgba(0, 0, 0, 0.32);
  border: 1px solid #575757;
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  word-spacing: 3px;
  user-select: none;
}

.btn-primary {
  background: #575757;
  color: white;
}

.btn-primary:hover {
  background: #525252;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: white;
  color: #575757;
}

.btn-secondary:hover {
  background: #f9f9f9;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.work-wrapper {
  margin-bottom: 1rem;
}
.work-wrapper img {
  width: 100%;
  display: block;
  border-radius: 2px;
}
.work-wrapper #name {
  font-weight: bold;
  font-size: 2.05rem;
  line-height: 3.5rem;
  letter-spacing: -0.05rem;
}
.work-wrapper #desc {
  font-style: italic;
  font-weight: 300;
  line-height: 1.1rem;
}
.work-wrapper .tech {
  margin-top: 0.9rem;
  margin-bottom: 2.5rem;
}
.work-wrapper .tag {
  display: inline-block;
  background: rgba(87, 87, 87, 0.65);
  border-radius: 40px;
  color: white;
  font-size: 0.8rem;
  line-height: 1.05rem;
  min-width: 3rem;
  text-align: center;
  padding: 6px 13px;
  margin: 3px 2px;
}
.work-wrapper #hr {
  width: 15vw;
  background: #c4c4c4;
  height: 1px;
  margin: 0 auto;
}

.title {
  font-weight: bold;
  font-size: 2.05em;
  letter-spacing: -0.05rem;
  margin-bottom: 0.5em;
}

.services-wrapper {
  margin-bottom: 2em;
}
.services-wrapper ul {
  list-style-type: disc;
  list-style-position: outside;
  padding: 0 1em;
  line-height: 1.3em;
  font-size: 1.05em;
  margin: 0.5em 0;
}
.services-wrapper ul li {
  margin-bottom: 0.625em;
}
.services-wrapper p {
  margin: 1em 0 0.5em 0;
  font-style: italic;
  font-size: 1.1em;
  font-weight: 300;
}

.skills {
  margin-bottom: 1em;
}
.skills .tag {
  display: inline-block;
  background: rgba(87, 87, 87, 0.65);
  border-radius: 40px;
  color: white;
  font-size: 0.8rem;
  line-height: 1.05rem;
  min-width: 5rem;
  text-align: center;
  padding: 6px 6px;
  margin: 4px 2px;
}

.about-wrapper .picture {
  width: calc(100% + 3em);
  margin-left: -1.5em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30.54%, rgba(255, 255, 255, 0) 83.61%, #FFFFFF 100%);
}
.about-wrapper .picture img {
  display: block;
  width: 100%;
  position: relative;
  z-index: -1;
}
.about-wrapper p {
  line-height: 1.25rem;
  word-spacing: 0.2rem;
  font-weight: 300;
  margin: 1em 0;
  color: #0f0f0f;
}
.about-wrapper p .bold {
  font-weight: normal;
}

header {
  animation-name: headanim;
  animation-duration: 0.4s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes headanim {
  from {
    right: -0.3em;
  }
  to {
    right: -1.1rem;
  }
}
nav a, nav img {
  animation-name: nav;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes nav {
  from {
    transform: translateY(-0.7em);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.controls img {
  animation-name: menu;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes menu {
  from {
    transform: translateY(-0.7em);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.links a {
  animation-name: menu-links;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes menu-links {
  from {
    transform: translateX(1em);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
html {
  font-size: 100%;
}

* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  outline: none;
}

body {
  height: 100vh;
  width: 100%;
  background: white;
  color: #575757;
  font-family: "Lato", sans-serif;
}

nav {
  height: 4em;
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  background: white;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  border-bottom: 0.25px solid #b1b1b1;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.18);
  z-index: 99;
}
nav a {
  border: none;
}

.container {
  position: relative;
  min-height: 100vh;
  padding-top: 2em;
  padding-bottom: 0.7em;
  overflow: hidden;
  background: white;
}
.container:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(87, 87, 87, 0.3) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgba(87, 87, 87, 0.3) 100%);
}

#home {
  padding-top: 5.5em;
}

.wrapper {
  position: relative;
  margin: 0 1.5em;
  min-height: calc(100vh - 5.5em);
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.wrapper .intro {
  line-height: 1.38em;
  letter-spacing: -0.1rem;
}
.wrapper .btns {
  flex: 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2em;
}
.wrapper .btns a {
  margin-bottom: 1em;
}

header {
  position: absolute;
  bottom: 2rem;
  right: -1.1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 6.25em;
  letter-spacing: -0.4rem;
  word-spacing: 1rem;
  font-style: italic;
  font-weight: normal;
  text-shadow: 0.25px 0.25px rgba(0, 0, 0, 0.13), -0.25px 0.25px rgba(0, 0, 0, 0.13), 0.25px -0.25px rgba(0, 0, 0, 0.13), -0.25px -0.25px rgba(0, 0, 0, 0.13);
  color: white;
  user-select: none;
  z-index: 2;
}

.header-wrapper {
  overflow: hidden;
}

#separator {
  height: 0px;
  color: #b1b1b1;
}

a {
  color: #005193;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #005193;
}

.menu-wrapper {
  position: fixed;
  top: 0;
  width: 100vw;
  display: none;
  z-index: 99;
}

.menu {
  position: relative;
}
.menu:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.56);
  z-index: -2;
}
.menu .controls {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  background: #575757;
}
.menu .links-wrapper {
  position: relative;
  padding: 1em 1.5em;
  overflow: hidden;
}
.menu .links-wrapper:after {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background: #575757;
  transform-origin: top left;
  transform: skewX(15deg);
  z-index: -1;
}
.menu .links-wrapper .links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.menu .links-wrapper .links a {
  text-transform: uppercase;
  color: white;
  border: none;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 1.875em;
  user-select: none;
}
.menu .links-wrapper .links .sep {
  width: 20vw;
  background: #c4c4c4;
  height: 1px;
  margin: 1.5em 0;
}
.menu .links-wrapper .links .social {
  display: flex;
  margin-bottom: 2em;
}
.menu .links-wrapper .links .social a {
  margin-left: 1.5em;
}
.menu #close-menu, .menu #emoji {
  width: 1.5em;
}

img {
  user-select: none;
}

@media (min-width: 33.5em) {
  html {
    font-size: 112.5%;
  }
  .menu .links-wrapper:after {
    transform: skewX(25deg);
  }
  .wrapper .intro {
    line-height: 1.35em;
  }
}
@media (min-width: 43.75em) {
  html {
    font-size: 120%;
  }
}
@media (min-width: 64em) {
  body {
    max-width: 1024px;
    margin: 0 auto;
    overflow-y: auto !important;
    background: linear-gradient(to bottom, #fff 0%, #fff 6.2em, #575757 6.2em, #575757 100%);
    background-attachment: fixed;
  }
  .menu-wrapper {
    width: 1024px;
  }
  header {
    right: 1rem;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.15), -1px 1px rgba(0, 0, 0, 0.15), 1px -1px rgba(0, 0, 0, 0.15), -1px -1px rgba(0, 0, 0, 0.15);
    transition: right 0.6 ease-in 0;
    animation-name: headanim;
    animation-duration: 0.7s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
  }
  @keyframes headanim {
    from {
      right: -3em;
    }
    to {
      right: 1rem;
    }
  }
  .wrapper .intro {
    line-height: 1.5em;
  }
  nav {
    width: 1024px;
    margin: 0 auto;
    box-shadow: none;
    border-bottom: 0.25px solid rgba(0, 0, 0, 0.5);
  }
  .menu .links-wrapper .links .sep {
    width: 10em;
  }
  .menu:after {
    background: rgba(255, 255, 255, 0.82);
  }
  .menu {
    max-width: 1024px;
    margin: 0 auto;
  }
  .menu .controls {
    width: 1024px;
    margin: 0 auto;
  }
  .menu .links-wrapper {
    margin-left: auto;
    max-width: 512px;
  }
}

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