/* Import the "Open Sans" font from Google Fonts */
/* @import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap"); */
/* Set the font size and family for the entire document */
body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* Make the document responsive */
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

/* Set the default text color */
body,
p {
  color: #333;
}

/* Style headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 10px 0;
}

h1 {
  font-size: 32px;
  color: #333;
}

h2 {
  font-size: 24px;
  color: #333;
}

h3 {
  font-size: 20px;
  color: #333;
}

/* Style links */
a {
  color: #0085bf;
  text-decoration: none;
}

/* Style code blocks */
pre {
  font-family: monospace;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  overflow: auto;
}

/* Style unordered lists */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Style blockquotes */
blockquote {
  padding: 10px;
  background-color: #f7f7f7;
  border-left: 3px solid #0085bf;
  margin: 10px 0;
}
