body { 
  background: #fefefe; color: #111517;
}

body .secondary { 
  color: #9c9c9c;
}

a {
  cursor: pointer;
}

@media (prefers-color-scheme: light) {
  .dark-theme {
    display: none;
    position: absolute;
  }

  body { 
    background: #fefefe; color: #111517;
  }
}
@media (prefers-color-scheme: dark) {
  .light-theme {
    display: none;
    position: absolute;
  }

  body {
    background: #111517; 
    color: #fefefe;
  }

  .post a:link {
    text-decoration: none;
    color: #fefefe;
    border-color: #fefefe;
    border-width:0 0 1px 0;
    padding: 3px 0px 2px 0px;
    border-style: none none solid none
  }

  .post a:visited {
    color: #fefefe;
    border-color: #fefefe;
    border-width:0 0 1px 0;
    padding: 3px 0px 2px 0px;
    border-style: none none dotted none
  }
}

.container {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}
h1 {
  font-size: 36px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  font-weight: bold;
}
h3 {
  font-size: 18px;
  font-weight: bold;
}
p {
  font-size: 16px;
  margin-bottom: 20px;
}

.pad {
  padding: 3px;
}

.no-margin {
  margin: 0px;
}

.no-padding {
  padding: 0px;
}

.center {
  text-align: center;
}

.post img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}