@charset "UTF-8";
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg-color: #1D1B1D;
  --font-color: rgb(255, 255, 255);
  --alt-color: rgba(175, 175, 175, 0.596);
  --link-color: #b2f3ff;
  --visited-color: #cec9fa;
  --pre-color: #eeeeee;
  --pre-bg-color: rgb(22, 22, 22);
}

body {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 10px;
  font: 14px/1.5 monospace;
  color: var(--font-color);
  background: var(--bg-color);
}

a:link {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: var(--visited-color);
}

a:active {
  color: var(--visited-color);
}

a:focus {
  outline: 2px dotted var(--link-color);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 32px;
  background: linear-gradient(69deg, rgb(91, 206, 250) 0%, rgb(245, 169, 184) 15%, rgb(255, 255, 255) 25%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
}

h2 {
  font-size: 24px;
  background: linear-gradient(69deg, rgb(91, 206, 250) 0%, rgb(245, 169, 184) 10%, rgb(255, 255, 255) 25%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
}

p > code {
  color: var(--pre-color);
  background: var(--pre-bg-color);
  padding: 2px;
}

pre {
  color: var(--pre-color);
  background: var(--pre-bg-color);
  padding: 24px;
  overflow-x: auto;
  border-radius: 1rem;
}

article {
  padding: 24px 0;
}

summary {
  color: var(--alt-color);
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}
.gallery-item img {
  max-width: 100%;
  height: auto;
}
.gallery-item h3 {
  margin-top: 5px;
  font-size: 16px;
  color: #333;
}

.aside-container {
  margin: 20px 0;
  padding: 20px;
  background-color: rgb(37, 34, 37);
  border-radius: 5px;
}

.aside-container a {
  color: rgb(201, 225, 248);
}

.aside-container p {
  color: #e9e9e9;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 5px;
}

table {
  border-radius: 10px;
}

th {
  background-color: var(--alt-color);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.sidebar {
  width: 300px;
  padding: 20px;
}

.toc {
  position: fixed;
  left: 20px; /* Adjust this value to fit your design */
  top: 50%; /* Adjust this value to position it vertically */
  transform: translateY(-50%);
  font-size: small;
}

/* Media query for smaller screens */
@media (max-width: 1900px) {
  .toc {
    position: static; /* Change position to static for smaller screens */
    transform: translateY(0);
  }
}
figcaption {
  color: #888;
  font: 12px/1.5 monospace;
  text-align: center;
}

figure {
  margin: auto;
}

img {
  display: block;
  max-width: 95%;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  margin: auto;
}

video {
  display: block;
  max-width: 95%;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  margin: auto;
}

#date {
  font-style: normal;
  font-weight: bolder;
  color: var(--alt-color);
}

header[role=main] nav ol,
header[role=main] nav ul {
  list-style: none;
  padding: 10px;
  margin: 10px;
}
header[role=main] nav ol li,
header[role=main] nav ul li {
  display: inline-block;
  margin-right: 0.5rem;
}

li.sideline {
  border-left: 3px solid var(--alt-color);
  padding-left: 15px;
  list-style: none;
}

.icon {
  padding-right: 7px;
}

.meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.meta li {
  display: inline-block;
}
.meta li:not(:last-child)::after {
  content: " ·";
}

.item .meta {
  font-size: 12px;
  display: inline-block;
  opacity: 75%;
}

.item-more {
  list-style: none;
}

.callout {
  padding: 1em;
  color: var(--pre-color);
  background: var(--pre-bg-color);
}

footer {
  font: 12px/1.5 monospace;
  margin-top: 24px;
  padding: 14px;
  background-color: rgb(38, 39, 44);
  color: var(--alt-color);
  border-radius: 10px;
}

/*# sourceMappingURL=styles.css.map */