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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #f7f8fa;
  color: #1a1d21;
  display: grid;
  place-items: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 24px;
}

.hero__icon {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
