/* default light mode notes */

body {
  max-width: 1100px;
  margin: auto;
  line-height: 1.8;
  padding: 50px;
  background: white;
  color: black;
}

article {
  border-width: 2px;
  border-style: solid;
  border-color: black;
  margin-bottom: 20px;
}

.callout-title {
  background: black;
  color: white;
  line-height: 1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.callout-title p {
  margin: 0;
}

.callout-title code {
  opacity: 70%;
}

.callout-content {
  padding: 10px;
}

.callout-content p,
.callout-content ul,
.callout-content ol {
  margin: 0;
}

h1,
h2,
h3 {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  line-height: 1.25;
}

h1 {
  font-size: 3em;
  font-weight: 1000;
}

h2 {
  font-size: 2.5em;
  font-weight: 900;
  margin-top: 2em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

table,
th,
td {
  border-color: black;
  border-width: 1px;
  border-style: dashed;
  border-collapse: collapse;
  padding: 5px;
}

table {
  margin-bottom: 20px;
}

th {
  background: black;
  color: white;
}

ul {
  list-style-type: square;
}

hr {
  /* dotted line */
  border: none;
  border-top: 1px dashed black;
  margin: 20px 0;
}

code {
  font-family: "Monaco";
  font-size: 0.8em;
}

::-moz-selection {
  color: white;
  background: navy;
}

::selection {
  color: white;
  background: navy;
}

mark {
  background: gold;
}

pre {
  border: 1px dashed black;
  padding: 1em;
}

blockquote {
  border-left: 4px solid navy;
  color: navy;
  margin-left: 0;
  padding-left: 1em;
}

/* images should remain at their normal size of small enough, and be centered on the page */
img,
image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  margin-bottom: 3em;
}
