.tag {
  background: rgba(244,244,244,0.5);
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 4px;
  color: #222;
  display: inline-block;
}
@media (prefers-color-scheme: dark) {
  .tag {
    background: rgba(002,002,002,0.5);
    color: #eee;
  }
}
/* Place custom CSS for About Me page in static/css for direct serving */
.about-profile img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1em;
  display: block;
}

h2:not(.blog-title) {
  display: none;
}

body nav {
  display: none;
}

body nav.site-menu {
  display: inherit;
  font-weight: bold;
  padding: 10px 0px;
  font-family: 'Courier New', Courier, monospace;
}

body.page-about {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif;
}

.content {
  padding: 10px 16px;
  background-color: rgba(244,244,244,0.9);
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  .content {
    background-color: rgba(002,002,002,0.1);
  }
}

.about-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2em;
}

.about-sections {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.about-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5em 2em;
  min-width: 220px;
  max-width: 320px;
}

@media (max-width: 700px) {
  .about-sections {
    flex-direction: column;
    align-items: center;
  }
}

.pronouns {
    display: block;
    font-size: .83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: lighter;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
}

.subtitle {
    background-color: rgba(244,244,244,0.9);
    padding: 2px 10px;
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 24px;
    font-family: 'Courier New', Courier, monospace;
}

@media (prefers-color-scheme: dark) {
  .subtitle {
    background-color: rgba(002,002,002,0.1);
  }
}

.date{
    font-family: 'Courier New', Courier, monospace;
}

.title {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.25em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
