body {
  font-family: Optima, Candara, Calibri, Arial, sans-serif;
  max-width: 800px;
  margin: auto;
  padding: 1em;
  line-height: 1.5;
  #background-color: #2a273f;
  background-color: #1b1b1b;
  color: #e0def4;
}

h1,h2,h3,h4{
  color: wheat
}

a{
    color: wheat;
}

a:hover{
    color: #c4a7e7;
}

i, em{
    color: darkolivegreen;
}

strong{
    color: darkolivegreen;
}

.center {
  text-align: center;
}

.avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* header and footer areas */
.menu { padding: 0; }
.menu li { display: inline-block; }
.article-meta, .menu a {
  text-decoration: none;
  background: darkolivegreen;
  padding: 7px;
  border-radius: 5px;
}
.menu, .article-meta, footer { text-align: center; }
.title { font-size: 1.1em; }
footer a { text-decoration: none; }
hr {
  border-style: dashed;
  color: darkolivegreen;
}

/* code */
pre {
  border: 1px solid darkolivegreen;
  padding: 1em;
  overflow-x: auto;
}
code {
  background: none;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 85%;
}
pre code{
background: none;
color: #c4a7e7;
}

/* misc elements */
img, iframe, video {
max-width: 100%;
max-inline-size: 100%;
block-size: auto;
}

main { hyphens: auto; }
blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 3px 1em 3px;
}

table {
  margin: auto;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
table thead th { border-bottom: 1px solid #ddd; }
th, td { padding: 5px; }
thead, tfoot, tr:nth-child(even) { background: #eee; }
