body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #18181b;
  /* https://grabient.com/HQBgrAzANKAsAcMT0cAjLAnDNYDsOsATDEUSKWicGWlBMHmtA3kS8AGyYRA/?ref=tiny-helpers&angle=0 */

  /* background: linear-gradient(0deg, rgba(5, 5, 10, 1.000) 0.000%, rgba(5, 5, 10, 1.000) 7.692%, rgba(9, 10, 14, 1.000) 7.692%, rgba(9, 10, 14, 1.000) 15.385%, rgba(13, 14, 18, 1.000) 15.385%, rgba(13, 14, 18, 1.000) 23.077%, rgba(18, 19, 22, 1.000) 23.077%, rgba(18, 19, 22, 1.000) 30.769%, rgba(22, 23, 26, 1.000) 30.769%, rgba(22, 23, 26, 1.000) 38.462%, rgba(26, 27, 30, 1.000) 38.462%, rgba(26, 27, 30, 1.000) 46.154%, rgba(30, 31, 34, 1.000) 46.154%, rgba(30, 31, 34, 1.000) 53.846%, rgba(34, 35, 38, 1.000) 53.846%, rgba(34, 35, 38, 1.000) 61.538%, rgba(38, 39, 42, 1.000) 61.538%, rgba(38, 39, 42, 1.000) 69.231%, rgba(41, 42, 45, 1.000) 69.231%, rgba(41, 42, 45, 1.000) 76.923%, rgba(44, 45, 48, 1.000) 76.923%, rgba(44, 45, 48, 1.000) 84.615%, rgba(46, 47, 51, 1.000) 84.615%, rgba(46, 47, 51, 1.000) 92.308%, rgba(48, 49, 53, 1.000) 92.308% 100.000%); */
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}



header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.avatar svg {
  width: 80px;
  height: 80px;
  fill: #a1a1aa;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.2em 0;
  letter-spacing: -0.02em;
}
.subtitle {
  color: #a1a1aa;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  text-align: center;
}

main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section {
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #3ecf8e;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.04em;
  text-align: center;
}
.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
/* .icon {
  width: 64px;
  height: 64px;
  background: #232336;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.10);
  cursor: default;
} */
.icon svg {
  width: 40px;
  height: 40px;
  fill: #a1a1aa;
}
@media (max-width: 700px) {
  main {
    max-width: 98vw;
  }
  .icons {
    gap: 1.2rem;
  }
  .icon {
    width: 48px;
    height: 48px;
  }
  .icon svg {
    width: 28px;
    height: 28px;
  }
  .avatar {
    width: 80px;
    height: 80px;
  }
  .avatar svg {
    width: 48px;
    height: 48px;
  }
  h1 {
    font-size: 1.3rem;
  }
} 