/* Basic Markdown CSS Styling */

/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-top: 24px;
  margin-bottom: 16px;
}

h1 {
  font-size: 4em;
  padding-bottom: 10px;
}

h2 {
  font-size: 3em;
  padding-bottom: 8px;
}

h3 {
  color: #335C67;
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.87em;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Text formatting */
strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

del, s {
  text-decoration: line-through;
}

/* Links */
a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul, ol {
  padding-left: 30px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 4px;
  line-height: 1.6;
}

ul > li {
  list-style-type: disc;
}

ol > li {
  list-style-type: decimal;
}

/* Nested lists */
ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 0;
  margin-top: 4px;
}

/* Code */
code {
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 85%;
  padding: 0.2em 0.4em;
}

/* Code blocks */
pre {
  background-color: #f6f8fa;
  border-radius: 6px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 85%;
  line-height: 1.45;
  overflow: auto;
  padding: 16px;
  margin-bottom: 16px;
}

pre code {
  background-color: transparent;
  border: 0;
  display: inline;
  line-height: inherit;
  margin: 0;
  max-width: auto;
  overflow: visible;
  padding: 0;
  word-wrap: normal;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #dfe2e5;
  margin: 0 0 16px 0;
  padding: 0 16px;
  color: #6a737d;
}

blockquote > :first-child {
  margin-top: 0;
}

blockquote > :last-child {
  margin-bottom: 0;
}

/* Horizontal rules */
hr {
  background-color: #e1e4e8;
  border: 0;
  height: 2px;
  margin: 24px 0;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 16px;
  width: 100%;
}

th, td {
  border: 1px solid #dfe2e5;
  padding: 6px 13px;
  text-align: left;
}

th {
  background-color: #f6f8fa;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #f6f8fa;
}

/* Images */
#article-md img {
  border: 3px solid #444;
   border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
     max-width: 100%;
      height: auto;
       display: block;
        margin: 0 auto 4rem;
  
}

.chi-sono-article img {
  border: 0;
  box-shadow: none;
}

.chi-sono-article h3 {
  color: #1E1E24;
}

/* Task lists */
.task-list-item {
  list-style-type: none;
  margin-left: -20px;
}

.task-list-item input[type="checkbox"] {
  margin-right: 6px;
}

@media (max-width: 44em) {
  #article-md iframe {
    width:100%
  }
}
