@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body,
html {
  max-width: 100vw;
  overflow-x: hidden;
  font-weight: 300;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, sans-serif;
}
body {
  background: black;
  color: white;
}
a {
  color: inherit;
  text-decoration: none;
}
.text-type {
  white-space: pre-wrap;
}
.text-type,
.text-type__content,
.text-type__cursor {
  display: inline-block;
}
.text-type__cursor {
  margin-left: 0.25rem;
  opacity: 1;
}
.text-type__cursor--hidden {
  display: none;
}
