body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding: 20px;
  text-align: center;
  background-color: #f0f4f8;
  color: #333;
}

.svg {
  display: block;
  margin: 0 auto 10px;
  max-width: 15%;
  width: 100%;
  height: auto;
}

.content {
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

h1, h2, h3, h4, h5, h6, p {
  line-height: 1.3;
}

h2 {
  color: #000080;
}

h3 {
  color: #41416b;
}

hr {
  margin: 4em;
}

pre {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
  font-size: 14px;
}

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

a {
  color: #0b233c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

footer {
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-row {
  margin: 0 15px;
}

.separator {
  margin: 0 5px;
  color: #0b233c;
}

@media (max-width: 600px) {
  .svg{
    max-width: 30%;
  }
}