* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

::selection {
  background: #eee;
}

a {
  color: black;
  text-decoration: none;
  white-space: nowrap;
}

li {
  list-style-type: none;
  display: inline;
}

html,
body {
  overscroll-behavior: none;
  overflow: scroll;
  overflow-x: hidden;
}

.text-lg {
  font: 500 13px/2 "neue-haas-grotesk-text", Helvetica, sans-serif;
}

.text-sm {
  font: 400 10px/1 "neue-haas-grotesk-text", Helvetica, sans-serif;
}

.tracking-wide {
  letter-spacing: 0.023em;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-x-5 {
  column-gap: 14px;
}

.max-w-lg {
  max-width: 725px;
}

.p-4 {
  padding: 28px 21px;
}

.m-5 {
  margin: 28px 21px;
}

@media (min-width: 768px) {
  .md\:p-5 {
    padding: 35px;
  }

  .md\:m-7 {
    margin: 35px;
  }
}

.uppercase {
  text-transform: uppercase;
}

.z-0 {
  z-index: -1;
}

button {
  cursor: pointer;
  aspect-ratio: 1/.150;
  width: 700px;
  height: 105px;
  overflow: hidden;
  border: 0;
  margin-top: -25px;
}

@media (max-width: 700px) {

  button {
    width: 90%;
    height: auto;
    margin-top: 0px;
  }
}

button:hover img {
  transform: translateY(-20%);
}

.press {
  pointer-events: none;
}

.press img {
  animation: press 70ms steps(3, end) forwards;
}

@keyframes press {
  from {

    transform: translateY(-20%);
  }

  to {
    transform: translateY(-80%);
  }

}

a[data-typewriter]:hover {
  color: #6b6b6b;
}

.curl {
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg,
      #fff,
      #f3f3f3 45%,
      #ddd 50%,
      #aaa 50%,
      rgba(0, 0, 0, 0.3) 56%,
      rgba(0, 0, 0, 0.2) 62%,
      rgba(0, 0, 0, 0.1) 80%,
      rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  cursor: pointer;
}

.curl.active {
  width: 80px;
  height: 80px;
}

.url {
  position: absolute;
  bottom: 35px;
  right: 20px;
  z-index: -1;
  display: block;
  width: 0px;
  height: 20px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 80ms;
}

.active .url {
  width: 50px;
  opacity: 1;
}

.url div {
  position: absolute;
  right: 0;
}

@media (max-width: 700px) {
  .curl {
    cursor: grab;
  }

  .curl.drag {
    width: 150px;
    height: 150px;
    cursor: grabbing;
  }

  .curl.drag {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  }

  .curl.drag .url {
    width: 100px;
  }
}

@media (min-width: 700px) {
  .curl.active:hover {
    width: 150px;
    height: 150px;
  }

  .curl:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
  }

  .curl.active:hover .url {
    width: 100px;
  }
}