h1,
h2,
h3,
h4,
h5 {
  color: #ddd;
  font-family: "Verdana", sans-serif;
}

b,
strong {
  color: #fff;
}

a {
  color: #eee;
}

html {
  color: #ccc;
  font-family: "Georgia", serif;
  font-size: 1.2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #111;
}

body {
  max-width: 800px;
  overflow-x: scroll;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  /* text-align: center; */
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: left;
  font-size: 1.2em;
  margin-bottom: 20px;
}

pre {
  overflow-x: scroll;
}

img {
  max-width: 100vw;
}

.block {
  border: 1px dotted white;
  padding: 5px 15px;
  margin: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block h1 {
  font-size: 1em;
  text-align: center;
  margin-bottom: 0;
}

.small {
  font-size: 0.8em;
}

.wave {
  background: #111;
  color: #fff;
  text-shadow: 1px 1px 10px #fff, 1px 1px 10px #ccc;
}

footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer hr {
  width: 100%;
  border: none;
  border-top: 1px solid #333;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 0.9em;
  margin: 10px 0;
}

.footer-links a {
  color: #999;
}

.footer-links a:hover {
  color: #eee;
}

.footer-copy {
  font-size: 0.8em;
  color: #666;
  margin: 5px 0 0;
}

/* Dynamic Content Styles */
#dynamic-content {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  border-radius: 8px;
  min-height: 100px;
}

.dynamic-posts article {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.dynamic-posts article:last-child {
  border-bottom: none;
}

.dynamic-post h2 {
  color: #eee;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.dynamic-post p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ccc;
}

.dynamic-post a {
  color: #4af;
}

.dynamic-post a:hover {
  color: #8cf;
  text-decoration: underline;
}

.dynamic-post ul, .dynamic-post ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.dynamic-post blockquote {
  border-left: 4px solid #555;
  padding-left: 15px;
  margin: 15px 0;
  color: #999;
}

.dynamic-post pre {
  background-color: #222;
  padding: 10px;
  overflow-x: auto;
  border-radius: 4px;
  margin: 10px 0;
}

.dynamic-post code {
  background-color: #222;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  color: #0f0;
}

.post-error {
  color: #f00;
  background-color: #300;
  padding: 10px;
  border-radius: 4px;
  margin: 10px 0;
}

.error {
  color: #f00;
  text-align: center;
  padding: 20px;
}

/* /Dynamic Content Styles */