body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #1b1e25;
  color: #fff; /* Adjust text color for better contrast */
}

.header {
  background: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.main-content {
  padding: 2rem;
}

.main-content h2 {
  color: #fff; /* Adjust header color for better contrast */
}

.main-content ul,
.main-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: #ccc; /* Adjust list item color for better readability */
}

.code-block {
  position: relative;
  margin: 1rem 0;
}

pre {
  background: #2d2d2d; /* Adjust code block background for contrast */
  border-left: 3px solid #333;
  padding: 1rem;
  overflow-x: auto;
  color: #ccc; /* Adjust code text color */
}

.copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #333;
  color: #fff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.copy-button:hover {
  background: #555;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.footer .social-links {
  margin-bottom: 1rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
