/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	tab-size: 4;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	-webkit-border-radius: .3em;
	        border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

:root {
  --top-nav-height: 65px;
  --content-container-max-width: 1175px;
  --content-max-width: 980px;

  /* color */
  --color-purple: #5469d4;
  --color-gray-1: #3c4257;
  --color-gray-2 : #697386;
  --color-gray-3 : #dce6e9;
  --color-gray-4 : #e3e8ee;
  --color-gray-5 : #f7fafc;
  --color-blue-1 : #1a1f36;

  /* color usage */
  --primary-text-color: var(--color-gray-1);
  --secondary-text-color: var(--color-gray-2);
  --content-border-color: var(--color-gray-4);
  --content-dark-bg-color: var(--color-gray-4);
  --content-light-bg-color: var(--color-gray-5);
  --top-nav-bg-color: var(--color-gray-5);
  --highlight-text-color: var(--color-purple);
  --border-color: var(--color-gray-3);
  --dark-text-color: var(--color-blue-1);

}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  color: #3c4257;
  margin: 0;
}

p {
  line-height: 1.5em;
  margin: 0;
  padding-top: 12px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  scroll-margin-top: 45px;
}

h1 {
  font-size: 32px;
  /* padding: 0.5em 0 0; */
}

h2 {
  font-size: 24px;
  font-weight: bold;
  padding: 2em 0 0;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  padding: 1.75em 0 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* content box */
article {
  width: 100%;
  min-height: calc(100vh - 65px - 64px);
  max-width: 980px;
}

/* content link */
article a{
  font-weight: 500;
  color: #5469d4;
}
article a:hover{
  color: #1a1f36;
}

/* ordered list */
article ol {
  counter-reset: listItem;
  padding: 12px 0 0 0;
  margin: 0;
}
article li {
  line-height: 26px;
  margin: 4px 0;
  position: relative;
  list-style: none;
  padding-left: 32px;
}
article li p {
  padding: 0;
}
article ol>li:before {
  counter-increment: listItem 1;
  content: counter(listItem);
  background: #e3e8ee;
  color: #3c4257;
  font-size: 12px;
  font-weight: 500;
  line-height: 10px;
  text-align: center;
  padding: 5px 0;
  width: 20px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  position: absolute;
  left: 0;
  top: 3px;
}

/* unordered list */
article ul {
  padding: 12px 0 0 0;
  margin: 0;
}
article ul>li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 8px;
  top: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #e3e8ee;
}

/* table */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
th,
td > strong {
  /* font-size: var(--font-size-3);
  line-height: var(--line-height-3);
  font-family: var(--sans); */
  font-weight: 500;
  text-align: left;
  padding: 0 16px 8px;
}
td {
  padding: 12px 16px 16px;
  background-clip: padding-box;
  border-bottom: 1px solid #e3e8ee;
}
tr:first-child td {
  border-top: 1px solid #e3e8ee;
}
tr td:first-child {
  border-left: 1px solid #e3e8ee;
}
tr td:last-child {
  border-right: 1px solid #e3e8ee;
}
tr:first-child td:first-child {
  -webkit-border-top-left-radius: 3px;
          border-top-left-radius: 3px;
}
tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 3px;
          border-bottom-left-radius: 3px;
}
tr:first-child td:last-child {
  -webkit-border-top-right-radius: 3px;
          border-top-right-radius: 3px;
}
tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 3px;
          border-bottom-right-radius: 3px;
}
tbody>tr:nth-child(odd) {
  background: #f7fafc
}


/* custom class */

