@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("inter900.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-text-dark: #46495c;
  --color-text-light: #dfe4f6;
  --color-background-light: #fafafa;
  --color-background-dark: #07070b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font:
    400 14px/1.5 system-ui,
    sans-serif;
  letter-spacing: 0.5px;
  background: var(--color-background-light);
  color: var(--color-text-dark);

  @media (prefers-color-scheme: dark) {
    background: var(--color-background-dark);
    color: var(--color-text-light);
  }
}

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

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.name-wrapper {
  transition: transform 150ms ease-out;
}

.name-wrapper:hover {
  transform: scale(1.05);
}

#name {
  visibility: hidden;
  cursor: default;
  user-select: none;
}

.contact {
  margin-top: 5rem;
}
