@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Readex+Pro:wght@160..700&display=swap");
html {
  --mouse-x: 0px;
  --mouse-y: 0px;
  --shadow-y: 0;
  --shadow-x: .5;
  --rotation: 0deg;
  --background: #00ba9f;
  --background-light: hsl(203, 38%, 43%);
  --htmlbackground: hsl(203, 14%, 90%);
  --text: #ffffff;
  --vh: 1vh;
  background-color: var(--htmlbackground);
  color: var(--text);
  font-size: 20px;
  font-family: "Readex Pro", sans-serif;
  height: 100vh;
  height: calc(var(--vh) * 100);
  width: 100vw;
}

body {
  background-color: var(--htmlbackground);
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  padding: 2vmax;
  margin: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 482px) {
  body {
    font-size: 20px;
  }
}

main {
  position: relative;
  padding: 0 0 5vh;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  display: flex;
  flex: 1 1 100%;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: all 1s cubic-bezier(1, 0, 0.25, 1);
  background-color: var(--htmlbackground);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.9);
  transform: translateY(1vmax);
}
main.loaded {
  background-color: var(--background);
  box-shadow: 0 0.5vmax 1vmax rgba(0, 0, 0, 0.5);
  box-shadow: calc(var(--shadow-x) * -1vmax + 0.5vmax) calc(var(--shadow-y) * -1vmax + 0.5vmax) 1vmax rgba(0, 0, 0, 0.5);
  transform: none;
}
main.loaded .title {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0, 0.5, 0, 1), opacity 2s cubic-bezier(0, 0.5, 0, 1);
}
main.loaded .title:after {
  transform: scaleX(0) skew(330deg);
  transition: transform 0.3s linear;
}
main.loaded .email > div {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s cubic-bezier(0, 0.5, 0, 1) 0.9s;
}
main.loaded .description > div {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0, 0.5, 0, 1) 1s;
}
main.done {
  transition: none;
}

.title {
  height: 80vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transform: scale(0.95);
  transform-origin: 50% 50%;
  padding-bottom: 10vh;
  box-sizing: border-box;
}
.title .logo {
  background-size: contain;
  display: flex;
  width: 80vw;
  position: relative;
  gap: 0.5%;
}
.title .logo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
  width: 80vw;
  height: auto;
  z-index: 1;
}
.title .logo svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
  width: 80vw;
  height: 20vw;
  z-index: 1;
  background-color: transparent;
}
.title .logo svg .back {
  fill: rgba(0, 0, 0, 0.3333333333);
}
.title .logo svg path.n {
  fill: var(--text);
}
.title .logo svg path.v {
  fill: var(--text);
}
.title .logo svg path.e {
  fill: var(--background);
}
.title .logo div {
  transition: transform 1s cubic-bezier(1, 0, 0.25, 1);
  transform-origin: 50% 50%;
  opacity: 0;
}
.title .logo div.N, .title .logo div.V {
  width: 25%;
  padding-bottom: 24.5%;
  position: relative;
  background-color: var(--text);
}
.title .logo div.E {
  width: 12.5%;
  align-self: stretch;
  background-color: var(--background);
}
.title:after {
  content: "";
  position: absolute;
  left: -100vw;
  right: -20vw;
  bottom: 0;
  top: 0;
  background: var(--htmlbackground);
  transform: scaleX(1) skew(330deg);
  transform-origin: 100% 100%;
  z-index: 1;
}

a {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  z-index: 100;
}
a > div {
  margin: 0.5rem 0;
}
a .email {
  position: relative;
  font-weight: bold;
  font-size: 48px;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  transform-origin: 50% 50%;
  white-space: nowrap;
}
a .email svg {
  height: 0.7em;
  width: 0.7em;
  user-select: none;
}
a .email svg path {
  fill: var(--text);
}
a .email .at {
  display: inline-block;
  width: 0;
  opacity: 0;
}
a .email > div {
  opacity: 0;
  transform: translateY(1rem);
}
a .email:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1em;
  height: 0.1em;
  background-color: var(--text);
  transform: scaleX(0);
  transition: all 0.3s cubic-bezier(0.5, 0, 1, 0.5) 0.5s;
  transform-origin: 50% 50%;
  opacity: 0;
}
a .description > div {
  opacity: 0;
  transform: translateY(1rem);
}
a:focus {
  outline: none;
}
a:hover .email, a:active .email, a:focus .email {
  transform: scale(1.1);
  transition: transform 0.5s cubic-bezier(0, 0.5, 0, 1);
}
a:hover .email:after, a:active .email:after, a:focus .email:after {
  transform: scaleX(1);
  transition: transform 0.3s cubic-bezier(0, 0.5, 0, 1);
  opacity: 1;
}

.spotlight {
  position: fixed;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 150vmax;
  height: 150vmax;
  border-radius: 50%;
  background: radial-gradient(var(--text), transparent 90%);
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  display: none;
}

.email-link {
  position: relative;
}
.email-link:after {
  content: "Copied!";
  position: absolute;
  top: 0;
  left: -3rem;
  right: -3rem;
  bottom: 2rem;
  background: var(--background);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  z-index: 100;
  overflow: hidden;
  visibility: hidden;
  padding-top: 3rem;
  transform: scaleX(1);
}
.email-link.copied:after {
  visibility: visible;
  padding-top: 0;
  transform: scaleX(2);
  transform-origin: 50% 50%;
  transition: padding 0.5s cubic-bezier(0, 1, 0.5, 1), transform 0.1s cubic-bezier(1, 0, 1, 0.5) 0.9s;
}
.email-link.copied .email {
  transform: scale(1.05);
}

@media screen and (max-width: 600px) {
  a .email {
    font-size: 32px;
  }
}

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