body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  margin: 1rem auto;
  max-width: 900px;
  padding: 0 1rem;
  color: #111;
}
header h1 { margin: 0; }
nav { margin-top: 0.4rem; }
a { color: #0366d6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* profile photo (left) */
.profile-left {
  float: left;
  width: 140px;      /* Aumentado de 100px para 140px */
  height: 140px;     /* Aumentado de 100px para 140px */
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1.5rem; /* Aumentei um pouco a margem direita */
  margin-bottom: 0.5rem; /* Aumentei a margem inferior */
}

/* Para manter a responsividade em telas menores */
@media (max-width: 600px) {
  .profile-left {
    float: none;
    display: block;
    margin: 0 auto 1.5rem; /* Margem inferior maior para celular */
    width: 160px;          /* Pode ser ainda maior no celular se quiser */
    height: 160px;
  }
}
