html {
  background: #ffffff;
  color: #111111;
  font-family: "Times New Roman", Times, serif;
}

body {
  margin: 0;
  padding: 80px 24px;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

.identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.portrait {
  width: clamp(72px, 22vw, 120px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
}

h1 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: normal;
}

p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a,
.cv-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 32px;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.intro {
  margin: 16px 0 0;
}

@media (max-width: 400px) {
  .contact p {
    font-size: 16px;
  }
}
