* {
  box-sizing: border-box;
}

body {
  background-image: url("x.jpg"); /* Corrected the syntax for background image */
  background-size: cover; /* Ensures the background image covers the entire body */
  font-family: "Inter var", sans-serif;
  font-feature-settings: "cv11";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;}

.profile-card {
  position: relative;
  border: 2px solid #000;
  border-radius: 1rem;
  background: #baf8f5;
  width: 250px;
}
.profile-card::before, .profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #04cab0;
  border: 2px solid #000;
  border-radius: 1rem;
  z-index: -1;
  transition: transform 200ms ease-out;
}
.profile-card:hover::before {
  transform: rotate(-3deg) scale(1.02) translate(-1%);
}
.profile-card:hover::after {
  transform: rotate(-6deg) scale(1.02) translate(-1%);
  z-index: -2;
  transition-delay: 100ms;
}
.profile-card__avatar {
  width: 80px;
  height: 80px;
  position: absolute;
  border: 2px solid #000;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 2px 0 #000;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  border-radius: 5rem;
}
.profile-card__bio {
  background: #04cab0;
  padding: 2rem;
  border-bottom: 2px dashed #000;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.profile-card__bio-name {
  font-size: 1.25em;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.profile-card__bio-title {
  font-size: 0.875em;
  font-weight: 600;
}
.profile-card__links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-card__links-button {
  padding: 1rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 2px solid #000;
  border-radius: 0.5rem;
  color: #000;
  transition: box-shadow 200ms ease;
  text-decoration: none;
}
.profile-card__links-button:hover {
  box-shadow: -3px 3px 0 #000;
}