* {
  margin: 0;
  box-sizing: border-box;
}
body {
  margin: 0.4rem 0.3rem 0.6rem;
  background-color: #D5E1EF;
  color: rgb(15, 27, 49);
  text-align: center;
  font-family: 'Young Serif', serif;
}
a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from parent */
}
main {
  min-height: 87svh;
  display: flex;
  justify-content: center; /* Center items along the main axis (horizontally) */
  align-items: center; /* Center items along the cross axis (vertically) */
}
.card { 
  background-color: white;
  --card-width: 380px;
  width: var(--card-width);
  padding: clamp(0.63rem, 1vw, 1rem) 2rem;
  @media (max-width: 900px) {
    box-shadow: rgba(54, 55, 56, 0.17) 0px 33px 22px -22px;
  }
  @media (max-width: 500px) {
    box-shadow: rgba(54, 55, 56, 0.17) 0px 20px 16px -11px;
  }
  @media (max-width: 300px) {
    width: 100dvw;
  }
  margin: auto;
  border-radius: clamp(0.9rem, 1.2vw, 1.4rem);
  box-shadow: rgba(54, 55, 56, 0.17) 2px 42px 27px -30px;
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.card img {
  display: block;
  max-width: 100%;
}
.card img#LinkedInQR{ 
  padding: 1.2rem 0rem;
}
.card .headerwrapper {
  margin: 0.8rem 0 1rem;
}
.card header {
  display: flex;
  align-items: center;
  /* justify-content default -> flex-start aligns items on the main axis in flex container */
  padding: 0 0 0 0.55rem;
}
.card img.avatar {
  max-width: 20%;
  border-radius: 50%;
}
h1 {
  padding: 0 0 0 0.8rem;
  text-align: left;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.7px;
  line-height: 1.36;
}
.no-wrap {
  white-space: nowrap;
}
.card p {
  padding: 0 1rem 0;
  margin-bottom: 1rem;
  font-family: "Rethink Sans", "Inter", sans-serif;
  color: rgb(78, 80, 90);
}
.attribution { 
  font-size: 11px; 
  padding: 1.45rem 0 0.24rem;
}
.attribution a { color: hsl(228, 45%, 44%); }