* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: white;
  font-family: Inter, system, -apple-system, BlinkMacSystemFont, Roboto,
    Segoe UI, Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgb(42, 45, 47);
}

a {
  color: inherit;
  font-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

/* --------- */

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 50vh;
  min-height: 30rem;
  background-color: rgb(32, 36, 41);
}

.header p {
  margin: 0.25rem 0;
}

.avatar {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
}

.name {
  font-size: 2.5rem;
}

.handle {
  color: rgb(87, 246, 255);
  font-family: SF Mono, Fira Code, Fira Mono, Roboto Mono, Lucida Console,
    Monaco, monospace;
  font-size: 1.5rem;
  font-weight: 500;
}

.social {
  display: flex;
  margin: 1rem 0;
}

.social li {
  margin: 0 0.5rem;
}

.social li svg {
  fill: white;
}