/* GLOBAL */
html, body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 300;
  background-color: #daeaf2;
  margin: 0;
  padding: 0;
}

/* Links */
a {
  text-decoration: none;
  color: #1565c0;
}
a:hover {
  color: #217ee7;
}

/* Centered content */
#content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* this keeps everything visually centered */
  text-align: center;

  /* give the title room but don’t let it go full-screen wide */
  width: min(92vw, 760px);

  padding: 32px;
  line-height: 1.7;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Avatar 
.avatar {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 0 1.25rem 0;
}
*/

.avatar {
  width: 220px;
  height: 220px;      /* must match width */
  object-fit: cover;
  border-radius: 50%; /* makes it circular */
  display: block;
  margin: 0 auto 1rem auto;
}


/* NAME (make it smaller + centered) */
h1.name {
  margin: 0;

  font-size: 1.5rem;
  line-height: 1.15;
  text-align: center;
  /* keep on one line when there’s room */
  white-space: nowrap;
}

/* On small screens, allow wrapping so it doesn't overflow */
@media (max-width: 700px) {
  h1.name {
    white-space: normal;
  }
}

/* Pronouns BELOW name (bigger than before, but still lighter) */
.pronouns {
  font-size: 1.35rem;   /* bump this up if you want even larger */
  font-weight: 300;
  opacity: 0.7;
  margin-top: 0.45rem;
  margin-bottom: 1.3rem;
}

/* Paragraph */
p {
  margin: 0 0 1.2rem 0;
  max-width: 52ch;   /* keeps lines readable + centered */
}

/* Icons */
.icons {
  list-style-type: none;
  font-size: xx-large;
  padding: 0;
  display: flex;
  justify-content: space-between;

  width: min(80%, 360px);
  margin: 1.25rem auto 0 auto;
}

.icons li {
  display: inline;
  width: 42px;
}

.icons a {
  color: black;
}

.icons a:hover {
  color: #1565c0;
}

/* GitHub Pages background safety */
:root,
html,
body,
main,
header,
footer,
.wrapper,
.container,
.page-content,
.site,
.site-content {
  background-color: #daeaf2 !important;
}