* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 32px;
    text-align: center;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
}

.social-row img {
  height: 28px;
  width: 28px;
  display: block;
}

.avatar {
  margin: 16px;
  width: 224px;             /* square size */
  height: 224px;
  object-fit: cover;       /* crop to fill the square */
  border-radius: 50%;      /* circular mask */
}

.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;      /* left-align the text */
  align-items: flex-start;/* left-align the children */
  width: fit-content;     /* shrink-wrap to content width */
  margin: auto;      /* center the container itself */
}

.link {
    font-size: 18px;
    text-align: left;
}

.link a,
.link a:visited {
    /* color: #3ca02e; */
    color: rgb(128, 128, 128);
    /* text-decoration: none; */
}

.about {
    margin: 32px;
    font-size: 18px;
}

.contact {
    margin: 8px;
}

/* .footer {
    margin: 32px;
    font-style: italic;
} */

.buymeawing-button {
    display: flex;
    justify-content: center;
    margin: 44px 0;
}

.buymeawing-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 2px solid #000;
    border-radius: 24px;
    background: #f07808;
    text-decoration: none;
}

.buymeawing-button a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.buymeawing-button img {
    width: 128px;
    height: auto;
}
