/*
 *                        ___
 *                       /\_ \
 *  _____     ___     ___\//\ \      __
 * /\ '__`\  / __`\  / __`\\ \ \   /'__`\
 * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\  __/
 *  \ \ ,__/\ \____/\ \____//\____\ \____\
 *   \ \ \/  \/___/  \/___/ \/____/\/____/
 *    \ \_\
 *     \/_/
 *
 * Designed, built, and released under MIT license by @mdo. Learn more at
 * https://github.com/poole/poole.
 */
/*
 * Contents
 *
 * Body resets
 * Custom type
 * Messages
 * Container
 * Masthead
 * Posts and pages
 * Pagination
 * Reverse layout
 * Themes
 */
/*
 * Body resets
 *
 * Update the foundational and global aspects of the page.
 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0; }

html {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5; }

@media (min-width: 38em) {
  html {
    font-size: 20px; } }

body {
  color: #515151;
  background-color: #FAFAFA;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

.theme-base .sidebar {
  background-color: #4195dd; }

/* No `:visited` state is required by default (browsers will use `a`) */
a {
  color: #6a9fb5;
  text-decoration: none; }

a strong {
  color: inherit; }

/* `:focus` is linked to `:hover` for basic accessibility */
a:hover,
a:focus {
  text-decoration: underline; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-weight: bold;
  line-height: 1.25;
  color: #303030;
  text-rendering: optimizeLegibility; }

h1 {
  font-size: 2rem; }

h2 {
  margin-top: 1rem;
  font-size: 1.5rem; }

h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem; }

h4, h5, h6 {
  margin-top: 1rem;
  font-size: 1rem; }

/* Body text */
p {
  margin-top: 0;
  margin-bottom: 1rem; }

strong {
  color: #303030; }

/* Lists */
ul, ol, dl {
  margin-top: 0;
  margin-bottom: 1rem; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem; }

/* Misc */
hr {
  position: relative;
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

/* Code */
code,
pre {
  font-family: Menlo, Monaco, "Courier New", monospace; }

code {
  padding: .25em .5em;
  font-size: 85%;
  color: #bf616a;
  background-color: #f2f2f2;
  border-radius: 3px; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: .8rem;
  line-height: 1.4;
  white-space: pre;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f2f2f2; }

pre code {
  padding: 0;
  font-size: 100%;
  color: inherit;
  background-color: transparent; }

/* Pygments via Jekyll */
.highlight {
  margin-bottom: 1rem;
  border-radius: 4px; }

.highlight pre {
  margin-bottom: 0; }

/* Quotes */
blockquote {
  padding: .5rem 1rem;
  margin: .8rem 0;
  color: #7a7a7a;
  border-left: 0.25rem solid #e5e5e5; }

blockquote p:last-child {
  margin-bottom: 0; }

@media (min-width: 30em) {
  blockquote {
    padding-right: 5rem;
    padding-left: 1.25rem; } }

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  max-height: 16rem; }

/* Tables */
table {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-collapse: collapse; }

td,
th {
  padding: .25rem .5rem;
  border: 1px solid #e5e5e5; }

tbody tr:nth-child(odd) td,
tbody tr:nth-child(odd) th {
  background-color: #f4f4f4; }

.caption {
  font-size: 16px;
  opacity: 0.5; }

/*
 * Container
 *
 * Center the page content.
 */
.container {
  max-width: 38rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto; }

article #video {
  max-width: 100%;
  margin: 30px 0; }

article #video iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto; }

blockquote.disclaimer,
blockquote.warning {
  color: #f1d144;
  border-color: #f1d144; }

/*
 * Posts and pages
 *
 * Each post is wrapped in `.post` and is used on default and post layouts. Each
 * page is wrapped in `.page` and is only used on the page layout.
 */
.page,
.post {
  margin-bottom: 4em; }

.post-list {
  margin-bottom: 0em; }

/* Blog post or page title */
.page-title,
.post-title,
.post-title a {
  color: #303030; }

.page-title,
.post-title {
  margin-top: 0; }

/* Meta data line below post title */
.post-date {
  display: block;
  margin-top: -.5rem;
  margin-bottom: 1rem;
  color: #9a9a9a; }

.read-more {
  padding: .6rem 1.2rem;
  font-size: .8rem;
  margin-top: 1rem;
  font-weight: bold;
  border-radius: 4px;
  background-color: #4171bc45; }

.read-more-wrapper {
  text-align: right; }

a:hover.read-more {
  text-decoration: none;
  background-color: #74a8f845; }

/*
 * Pagination
 *
 * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
 * there are no more previous or next posts to show.
 */
.pagination {
  overflow: hidden;
  /* clearfix */
  margin-left: -1rem;
  margin-right: -1rem;
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  color: #ccc;
  text-align: center; }

/* Pagination items can be `span`s or `a`s */
.pagination-item {
  display: block;
  padding: 1rem;
  border: 1px solid #eee; }

.pagination-item:first-child {
  margin-bottom: -1px; }

/* Only provide a hover state for linked pagination items */
@media (min-width: 30em) {
  .pagination {
    margin: 3rem 0; }
  .pagination-item {
    float: left;
    width: 50%; }
  .pagination-item:first-child {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
  .pagination-item:last-child {
    margin-left: -1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; } }

/* Recommendations */
.creators-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 50px 0; }

.creator {
  display: flex;
  flex: 1;
  flex-basis: 49%;
  padding: 12px;
  border-radius: 12px; }

.creator:hover {
  background-color: #547EA31F; }

.creator-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px; }

.creator-text h4 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.2em; }

.creator-text span {
  display: block;
  font-size: 0.9em;
  color: #515151; }

a.creator:hover {
  text-decoration: none; }

.creator img {
  width: 100px;
  height: 100px;
  margin: 0; }

@media (max-width: 80em) {
  .creators-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap; } }

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #3b4045;
    color: #F0F0F0; }
  a {
    color: #abd5f9; }
  strong, h1, h2, h3, h4, h5, h6 {
    color: #FFF; }
  .page-title,
  .post-title,
  .post-title a {
    color: #FFF; }
  .post-date {
    color: #abd5f9; }
  hr {
    border-top: 1px solid #535a68;
    border-bottom: 1px solid #535a68; }
  code {
    background-color: #575b63;
    color: #cad5ed; }
  pre {
    background-color: #575b63; }
  blockquote {
    color: #a2aabb;
    border-left: 0.25rem solid #535a68; }
  table,
  td,
  th {
    border: 1px solid #535a68; }
  tbody tr:nth-child(odd) td,
  tbody tr:nth-child(odd) th {
    background-color: #464c57; }
  .article-img {
    opacity: 96%; }
  .creator-text span {
    color: #F0F0F0; }
  .creator:hover {
    background-color: #BCE0FF1F; } }
