body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Lato, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  height: 100vh;
  height: -webkit-fill-available;
  overflow: hidden;
}

h1,
h2,
h6 {
  margin: 0;
  line-height: 1;
}

.profile {
  display: flex;
  gap: 16px;
  padding: 16px;
  flex-direction: column;
}

.profile h1 {
  font-size: 3.75vw;
  font-weight: 700;
}

.profile h2 {
  color: transparent;
  font-size: 1.4vw;
  font-weight: 400;
  background-clip: text;
  background-image: linear-gradient(90deg, #f45f7f, #887af7, #0ecdfd);
}

.profile h6 {
  color: lightgray;
  font-size: 0.85vw;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 4px;
  margin-left: -4px;
}

.social-links a {
  color: gray;
  display: block;
  transition: color 150ms;
}

.social-links a:hover {
  color: white;
}

.social-links svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 600px) {
  .profile h1 {
    font-size: 10.95vw;
  }

  .profile h2 {
    font-size: 4.25vw;
  }

  .profile h6 {
    font-size: 2.55vw;
  }
}