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

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2rem;
  color: white;
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
}

.social a:hover {
  color: white;
}

.social svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}
