/* reset by https://pawelgrzybek.com/the-css-reset-again/ */

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

html {
  color-scheme: light dark;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  hanging-punctuation: first allow-end last;
}

/* Vars */

:root {
  --bg: #0a0a0b;
  --bg-1: #111114;
  --fg: #ece9e2;
  --fg-dim: #8a8780;
  --fg-mute: #4a4843;
  --line: #1c1c1e;
  --line-2: #232327;
  --display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --sans: "Archivo", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --italic: "Cormorant Garamond", Georgia, serif;
}

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

.hero {
  padding: 20px;
  position: relative;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 17vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__title-top,
.hero__title-bottom {
  display: block;
}

.hero__title-bottom {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
  font-style: normal;
}

.hero__description {
  font-family: var(--sans);
  padding-left: 1%;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.005em;
}

.hero__description i {
  font-family: var(--italic);
  font-style: italic;
  font-size: 30px;
}

/* Player */

.player {
  margin-top: 32px;
  padding-left: 1%;
}