@font-face {
  font-family: "inter";
  src: url("fonts/inter.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "cera";
  src: url("fonts/cera-pro.otf") format("opentype");
  font-display: swap;
}
body {
  opacity: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  font-family: inter, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1.8px;
}

#mobile {
  display: none;
}

h1,
h2 {
  font-family: cera, sans-serif;
  font-size: 4rem;
  letter-spacing: 4.1px;
}

h1 a {
  font-size: 4rem;
}

h1 a:hover,
h2 a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 3rem;
  line-height: 4rem;
}

h2 a {
  font-size: 3rem;
}

h3,
h4 {
  font-family: cera, sans-serif;
  font-size: 2.2rem;
  line-height: 3.5rem;
  letter-spacing: 3px;
}

h4 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
}

small {
  font-size: 0.8rem;
  line-height: 1.8rem;
}

.smaller {
  font-size: 0.7rem;
  font-style: italic;
}

a,
a:hover,
span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: inherit;
}

canvas {
  position: absolute;
  top: 0;
  z-index: -1;
}

#canvas {
  width: 100vw;
  height: 100vh;
}

#hamburger {
  display: none;
}

#menu {
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 4rem 4rem;
  display: flex;
  gap: 2rem;
}
#menu span {
  font-size: 0.85rem;
  line-height: 1.5rem;
  text-underline-offset: 0.5rem;
  cursor: pointer;
}
#menu span:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
#menu #home {
  margin-right: auto;
  text-underline-offset: 0.5rem;
}

::-webkit-scrollbar {
  display: none;
}

#snapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
#snapper > div {
  display: flex;
  flex-direction: column;
}

#landing {
  gap: 0;
}

.snap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

#name {
  text-decoration: underline;
}

.dud {
  color: #757575;
}

#bio {
  padding: 0.5rem 3rem 0 0;
}

#cursor {
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
#pagination,
#footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0 3rem 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#pagination #count,
#footer #count {
  font-size: 0.8rem;
}
#pagination #recruiter,
#footer #recruiter {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#pagination #recruiter span,
#footer #recruiter span {
  font-size: 0.8rem;
}
#pagination #recruiter svg,
#footer #recruiter svg {
  width: 4rem;
  height: 3.5rem;
  cursor: pointer;
}

#footer {
  justify-content: flex-end;
}

svg.on .knob {
  transform: translateX(20px);
}

.track {
  fill: #000000;
  transition: fill 0.3s ease;
}

.knob {
  fill: #ffffff;
  transition: transform 0.3s ease;
}

#transition {
  opacity: 0;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
}
#transition > div {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#screen {
  background-color: #ffffff;
  opacity: 0;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: none;
}

.wrapper {
  opacity: 0;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: none;
}

.dialog {
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 25px;
  width: 33%;
  padding: 1rem 3rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.close {
  display: flex;
}
.close h3 {
  margin-left: auto;
  cursor: pointer;
}

.folders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 3rem;
  margin-bottom: 3rem;
}

.folder {
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.folder img {
  width: 3.5rem;
  height: auto;
  cursor: pointer;
}
.folder small {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  line-height: 1rem;
}

#persona {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#persona .dialog {
  padding: 2rem 3rem 2rem 3rem;
  text-align: center;
  gap: 0.5rem;
}
#persona .dialog h2 {
  text-align: center;
}
#persona .dialog svg {
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
#persona .dialog svg.on .knob {
  transform: translateX(20px);
}
#persona .dialog .track {
  fill: #000000;
  transition: fill 0.3s ease;
}
#persona .dialog .knob {
  fill: #ffffff;
  transition: transform 0.3s ease;
}
#persona .dialog a {
  color: #999999;
}
#persona #continue {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

#projects .dialog {
  width: 40%;
  padding-bottom: 1.5rem;
}

#experiments .dialog {
  width: 30%;
  padding-bottom: 1.5rem;
}
#experiments .dialog .folders {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}

#tooltip {
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  font-size: 0.75rem;
  line-height: 1.2rem;
  background-color: #ffffff;
  border: 1.25px solid #000000;
  border-radius: 15px;
  width: 16rem;
  z-index: 4;
}

#captcha input {
  border: none;
  border-bottom: 4px solid #000000;
  outline: none;
  font-family: cera, sans-serif;
  font-size: 2.2rem;
  line-height: 3.5rem;
  letter-spacing: 3px;
}

#captcha input::-moz-placeholder {
  color: #dddddd;
}

#captcha input::placeholder {
  color: #dddddd;
}

#transition {
  z-index: 100;
}

#kaomoji {
  font-size: 10rem;
}

#main,
#main2 {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 4rem;
  gap: 4rem;
  overflow: none;
}

#hook {
  min-width: 35%;
  max-width: 35%;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 15%;
  padding-bottom: 5%;
  overflow: scroll;
}
#hook h3 {
  line-height: 3rem;
}
#hook #tools {
  color: #777777;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.75rem;
}
#hook #date {
  margin-bottom: 3.5rem;
}
#hook #audio {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#hook #audio #playback {
  width: 2.5rem;
  height: 2.5rem;
}
#hook #audio #playback img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#hook #audio h4 {
  margin: 0;
}
#hook #transcript {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #777777;
  cursor: pointer;
}
#hook #transcript:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
#hook #script {
  letter-spacing: 1px;
}

#gallery {
  flex-grow: 1;
  height: 100%;
  padding-top: 10%;
  padding-bottom: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  overflow-y: scroll;
}
#gallery .image {
  width: 100%;
  height: auto;
  position: relative;
}
#gallery img {
  width: 100%;
  height: auto;
}
#gallery .caption {
  position: absolute;
  top: calc(100% - 1.5rem);
  left: 5%;
  padding: 0.75rem 1rem 0.75rem 1rem;
  font-size: 0.75rem;
  line-height: 1.2rem;
  background-color: #ffffff;
  border: 1.25px solid #000000;
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
}
#gallery .caption p {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
}
#gallery .video {
  position: relative;
  width: 100%;
}
#gallery .video video {
  width: 100%;
  height: auto;
}
#gallery .video .playback {
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gallery .video .playback img {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
#gallery img.border {
  border: 1px solid #eaeaea !important;
}

#links {
  min-width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

#social {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8%;
}
#social #me {
  display: inline-block;
  border-bottom: 4px dashed #000;
  cursor: default;
}
#social #email {
  cursor: pointer;
}
#social a {
  text-decoration: underline;
}

#draw {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #aaaaaa;
}

#tooltip2 {
  position: absolute;
  display: flex;
  flex-direction: column;
}
#tooltip2 #send,
#tooltip2 #erase {
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  background-color: #ffffff;
  border: 1.25px solid #000000;
  min-width: 15rem;
}
#tooltip2 #send {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
#tooltip2 #send span {
  position: relative;
  z-index: 1;
}
#tooltip2 #overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #eeeeee;
  z-index: 0;
}
#tooltip2 #erase {
  border-radius: 0 0 15px 15px;
  border-top: none;
}
#tooltip2 #send:hover,
#tooltip2 #erase:hover {
  background-color: #f7f7f7;
}

#popup {
  position: absolute;
  pointer-events: none;
}
#popup > img {
  height: 50vh;
  box-shadow: -5px 5px 20px #e8e8e8;
}

.extra {
  border-bottom: 2px dashed #000;
}

#small {
  display: none;
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  overflow: none;
  z-index: 1000;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  padding: 40% 2rem 0 2rem;
  text-align: center;
}
#small h3 {
  line-height: 3rem;
}
#small img {
  height: 5rem;
  width: auto;
}

@media (max-width: 768px) {
  #mobile {
    display: flex;
    opacity: 1;
  }
  #canvas,
  #screen,
  .wrapper,
  #main,
  #main2 {
    height: 85vh;
  }
  #menu {
    display: none;
  }
  #snapper {
    padding: 0 1.5rem;
  }
  .snap {
    height: 90vh;
  }
  h1 {
    font-size: 2.5rem;
    letter-spacing: 4.1px;
  }
  #name {
    font-size: 4rem;
    line-height: 5rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  #bio {
    margin-top: 1rem;
  }
  h1 a {
    font-size: 2.5rem;
  }
  h1 a:hover,
  h2 a:hover {
    text-decoration: none;
  }
  h3 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  small {
    font-size: 1rem;
  }
  #pagination {
    padding: 4rem 1.5rem;
  }
  #hamburger {
    display: block;
    width: 100vw;
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 1.5rem;
  }
  #hamburger svg {
    width: 2rem;
    height: auto;
  }
  #menu2 {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    background-color: #ffffff;
    top: 0;
    left: 0;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #menu2 p,
  #menu2 a {
    font-size: 1.1rem;
  }
  #menu2 #home2 {
    margin-top: 3rem;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
  }
  .close2 {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2.5rem;
    font-family: cera, sans-serif;
  }
  .wrapper {
    background-color: #ffffff;
  }
  #screen {
    display: none;
  }
  .dialog {
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 25px;
    width: 90% !important;
    padding: 1rem 1.5rem 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .close {
    display: flex;
  }
  .close h3 {
    margin-left: auto;
  }
  .folders {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 2.5rem;
    margin-bottom: 2rem;
  }
  #experiments .folders {
    grid-template-rows: 1fr;
  }
  .folder {
    min-width: -moz-fit-content;
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .folder img {
    width: 3rem;
    height: auto;
    cursor: pointer;
  }
  .folder small {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1rem;
  }
  #captcha input {
    font-size: 1.8rem;
  }
  #kaomoji {
    font-size: 5rem;
  }
  #main {
    display: block;
    padding: 40% 1.5rem 3rem 1.5rem;
    overflow: scroll;
  }
  #hook {
    min-width: 100%;
    max-width: 100%;
    flex-grow: auto;
    gap: 1rem;
    padding: 0;
  }
  #hook h2 {
    font-size: 2.5rem;
  }
  #hook h3 {
    line-height: 2.5rem;
  }
  #hook small {
    font-size: 0.9rem;
  }
  #hook #date {
    display: none;
  }
  #gallery {
    margin-top: 3rem;
    margin-bottom: 4rem;
    height: -moz-max-content;
    height: max-content;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    overflow-y: unset;
  }
  #links {
    height: -moz-max-content;
    height: max-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(1, 1fr);
    row-gap: 2.5rem;
    margin-bottom: 2rem;
  }
  #main2 {
    padding: 0;
  }
  #social {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  #social #me {
    border: none;
  }
  #social h2 {
    padding-bottom: 2rem;
  }
  #social a {
    text-decoration: underline;
  }
  #draw {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */