* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-color: white;
  --stroke-color: rgba(255, 255, 255, 0.9);
  --surface-color: rgba(255, 255, 255, 0.1);
  --surface-color-hover: rgba(0, 0, 0, 0.02);
  --highlight-color: rgba(255, 255, 255, 0.2);
}

body {
  background: rgb(128,11,1);
  background: linear-gradient(180deg, rgba(128,11,1,1) 0%, rgba(255,255,255,1) 100%);
  /* height: 100dvh; */
}
body * {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
}

img {
  width: 100%;
  object-fit: cover;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 37.5em;

  margin-inline: auto;
  padding: 2em 1.5em;
}
/* .container > * {
  border: 1px solid red;
} */

.person {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  margin-top: 1rem;
}

/* Profile */
.profile-img {
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  border: 4px solid var(--stroke-color);
}
.profile-name {
  font-weight: 500;
  line-height: 1.5rem;
}


/* VCard button */
.vcard {
  padding: 1em 2em;

  border: none;
  border-radius: .5em;

  background: white;
  color: black;

  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

/* Links */
.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul li a {
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  font-weight: 500;

  text-decoration: none;

  transition: background 0.2s;
}
ul li a:hover {
  background: -var(--surface-color-hover);
  border: 1.5px solid var(--text-color);
}

/* Social Links */

#social-links {
  display: flex;
  justify-content: center;

  font-size: 32px;
}
#social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 16px;

  opacity: 0.8;
  transition: opacity 0.2s;
}
#social-links a:hover {
  opacity: 1;
}


/* logo */

#logo {
  padding: 24px;
  text-align: center;
}
#logo img {
  width: 150px;
  /* border-radius: 8px; */
  /* border: 4px solid var(--stroke-color); */
}

/* qrcode */

#qrcode {
  text-align: center;
}
#qrcode img {
  width: 180px;
}
