article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}

small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
  padding: 0;
}

body {
  --color-text: #99a3bb;
  --color-bg: #2b313e;
  --color-link: #59647e;
  --color-link-hover: #cc8678;
  --color-overlay: #451a11;
  --color-tagline: #c69f64;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: Futura, "IBM Plex Sans", Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  height: 100vh;
}

.demo-2 {
  --color-text: #000;
  --color-bg: #ffffff;
  --color-link: #7f746d;
  --color-link-hover: #000;
  --color-tagline: rgb(158, 158, 158);
  overflow: hidden;
}

.js .loading::before {
  content: "";
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  content: "";
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
  outline: none;
}

.message {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  text-align: center;
}

.frame {
  padding: 3rem 3vw;
  /* text-align: center; */
  position: relative;
  z-index: 1000;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.frame__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-weight: 500;
}

.frame__tagline {
  color: black;
  position: absolute;
  top: 80%;
  left: 30%;
  text-align: center;
  font-size: 120px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.frame__links {
  display: inline;
}

.frame a {
  text-transform: lowercase;
}

.frame__github,
.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
  margin-right: 1rem;
}

.frame__demos {
  margin: 1rem 0;
}

.frame__demo--current,
.frame__demo--current:hover {
  color: var(--color-text);
}

.content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.content__img > img {
  height: 80vh;
}

.content__text {
  position: absolute;
  font-size: 10vw;
}

.js .content__text-inner {
  opacity: 0;
}

.grid {
  display: grid;
  padding: 1rem;
  margin: 0 auto;
  grid-template-columns: 100%;
  grid-row-gap: 4rem;
  grid-column-gap: 20vw;
  max-width: 1200px;
}

.grid__item {
  height: 60vh;
  max-height: 500px;
  position: relative;
}

.grid__item-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.grid__item-img::after {
  content: "";
  background: var(--color-overlay);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  opacity: 0;
  transition: opacity 0.3s;
}

.grid__item:hover .grid__item-img::after {
  opacity: 1;
}

.grid__item-letter {
  position: absolute;
  bottom: -4vw;
  right: -4vw;
  z-index: 10;
  font-size: 15vw;
  line-height: 1;
}

.description {
  width: 50%;
  margin-left: 15%;
  margin-right: auto;
  margin-top: 4em;
  z-index: 5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 30px;
}

.info {
  text-indent: 30px;
}

.resume {
  margin-top: 3em;
  font-size: 18px;
  color: white;
  /* text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6); */
}

.resume__experience {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  margin-left: 4%;
}

.resume__lists {
  color: rgb(158, 158, 158);
  /* margin-left: 20px; */
  line-height: 36px;
  margin-left: 4%;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.external__link {
  position: absolute;
  bottom: 2.5%;
  left: 4%;
  z-index: 100;
}

.external__link > a > img {
  width: 20px;
  margin-right: 1rem;
}

.button__back {
  position: absolute;
  top: 15%;
  right: 3%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 0.75rem;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: white;
  font-weight: 900;
  font-size: 28px;
}

.button__back:hover,
.button__back:active {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

a:hover,
a:active {
  color: white;
}

.description {
  /* height: 100%;
  top: 25%; */
}

.resume__experience {
  font-size: 24px;
  margin-left: 4%;
}

.resume__lists {
  font-size: 14px;
  line-height: 20px;
  margin-left: 4%;
}

@media screen and (max-width: 60em) {
  .message {
    display: none;
  }

  section {
    margin-top: 5em;
  }

  .frame {
    position: fixed;
    text-align: left;
    z-index: 10000;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 3rem;
    pointer-events: none;
    grid-template-columns: 75% 25%;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title links"
      "... ..."
      "github demos";
  }
  .frame__title-wrap {
    display: flex;
  }
  .frame__title {
    margin: 0;
  }
  .frame__tagline {
    position: absolute;
    top: 15%;
    left: 10%;
    text-align: center;
    font-size: 86px;
  }
  .content {
    width: 50%;
  }

  .description {
    margin-top: 10rem;
    margin-left: 4rem;
  }

  .info {
    font-size: 14px;
    line-height: 20px;
  }

  .button__back {
    position: absolute;
    top: 3%;
    right: 3%;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }

  a {
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 28px;
  }

  .button__back:hover,
  .button__back:active {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }

  a:hover,
  a:active {
    color: white;
  }

  .description {
    /* height: 100%;
    top: 25%; */
  }

  .resume__experience {
    font-size: 16px;
  }

  .resume__lists {
    font-size: 14px;
    line-height: 20px;
  }

  .info {
    font-size: 14px;
  }
}

@media screen and (max-width: 390px) {
  * {
    box-sizing: content-box;
  }

  main {
    height: 100vh;
  }

  section {
    display: flex;
    margin: 1rem 0;
    flex-direction: column-reverse;
    position: relative;
    /* top: -2.5em; */
    height: 100vh;
  }

  .content {
    margin: auto;
    display: flex;
    justify-content: center;
  }

  .content__img {
    margin-top: 40px;
  }

  .content__img > img {
    height: 40vh;
  }

  .frame__tagline {
    font-size: 32px;
    margin: 0;
  }

  .description {
    width: 100%;
    font-size: 10px;
    margin: 0;
    margin-top: 12px;
    line-height: 16px;
    /* top: 45%; */

    padding: 0 4rem;
  }

  .info {
    font-size: 10px;
    margin: 0 3rem;
  }

  .resume {
    margin: 1rem 3rem;
  }

  .resume__experience {
    margin: 0;
    font-size: 14px;
  }

  .resume__lists {
    line-height: 14px;
    font-size: 12px;
  }

  .external__link {
    left: 36%;
    bottom: -10%;
  }

  .external__link > a > img {
    margin: 0;
    margin-right: 24px;
    width: 16px;
  }

  .frame {
    padding: 0;
    width: 100vw;
  }

  .frame__title {
    justify-content: flex-start;
    margin-top: 12px;
    margin-left: 12px;
    display: none;
  }

  .frame__tagline {
    top: 12px;
    left: 36px;
  }
  .button__back {
    top: 1%;
    right: 2%;
  }

  .button__back > a {
    font-size: 16px;
  }
}


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