*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  background: #141414;
  -webkit-font-smoothing: antialiased;
}

.enter {
  display: inline-flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.enter:hover {
  opacity: 0.65;
}

.enter:active {
  opacity: 0.45;
}

.typewriter {
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  background: #ffffff;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor {
    animation: none;
  }
}
