:root {
  --orange: #f55528;
  --image: 250px;
  --icon: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  color: #f5f5f5;
  text-align: center;
}

html,
body,
main {
  width: 100%;
  height: 100%;
}

html {
  background-color: #17181c;
}

body {
  --overlay-blurple: #7a5cd633;
  background: linear-gradient(215deg, var(--overlay-blurple), transparent 40%),
    radial-gradient(var(--overlay-blurple), transparent 40%) no-repeat -60vw -40vh /
      105vw 200vh,
    radial-gradient(var(--overlay-blurple), transparent 65%) no-repeat 50%
      calc(100% + 20rem) / 60rem 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 3% 10%;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

main > div {
  height: 100%;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

.profile-image {
  width: var(--image);
  height: var(--image);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5f5f5; /* White border around the circle */
  box-shadow: 0 0 200px rgba(245, 84, 40, 0.5);
}

.description {
  color: #c1c3c8;
  font-weight: 500;
  padding: 0 5%;
}

.description a {
  color: var(--orange);
}

.description a img {
  transform: translateY(10%); /* Move the image down a bit */
}

.socials {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2%;
}

.socials img {
  width: var(--icon);
  height: var(--icon);
}

#qr img {
  border: 5px solid #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 0 200px #a7a7a733;
}

@media (max-width: 950px) {
  body {
    padding: 3% 4%;
  }
}

@media (max-width: 720px) {
  :root {
    --image: 200px;
    --icon: 25px;
  }

  html {
    height: auto;
  }

  body {
    padding: 20px 10px;
    gap: 20px;
  }

  main {
    height: 100%;
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
  }

  main > :first-child {
    gap: 10px;
  }

  #qr {
    transform: scale(0.8);
  }
}
