@charset "UTF-8";
/* Imports */
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

pre > code.sourceCode {
  white-space: pre;
  position: relative;
}

pre > code.sourceCode > span {
  display: inline-block;
  line-height: 1.25;
}

pre > code.sourceCode > span:empty {
  height: 1.2em;
}

.sourceCode {
  overflow: visible;
}

code.sourceCode > span {
  color: inherit;
  text-decoration: inherit;
}

div.sourceCode {
  margin: 1em 0;
  outline: 1px solid hsl(0, 0%, 75%);
  padding: 0.75em;
  background-color: white;
}

pre.sourceCode {
  margin: 0;
}

@media screen {
  div.sourceCode {
    overflow: auto;
  }
}
@media print {
  pre > code.sourceCode {
    white-space: pre-wrap;
  }
  pre > code.sourceCode > span {
    text-indent: -5em;
    padding-left: 5em;
  }
}
pre.numberSource code {
  counter-reset: source-line 0;
}

pre.numberSource code > span {
  position: relative;
  left: -4em;
  counter-increment: source-line;
}

pre.numberSource code > span > a:first-child::before {
  content: counter(source-line);
  position: relative;
  left: -20px;
  text-align: right;
  vertical-align: baseline;
  border: none;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 4px;
  width: 4em;
  color: #aaaaaa;
}

pre.numberSource {
  margin-left: 2em;
  border-left: 1px solid #aaaaaa;
  padding-left: 0.5em;
}

@media screen {
  pre > code.sourceCode > span > a:first-child::before {
    text-decoration: underline;
  }
}
code span.al {
  color: #ff0000;
  font-weight: bold;
} /* Alert */
code span.an {
  color: #60a0b0;
  font-weight: bold;
  font-style: italic;
} /* Annotation */
code span.at {
  color: #7d9029;
} /* Attribute */
code span.bn {
  color: #40a070;
} /* BaseN */
code span.bu {
  color: #008000;
} /* BuiltIn */
code span.cf {
  color: #007020;
  font-weight: bold;
} /* ControlFlow */
code span.ch {
  color: #4070a0;
} /* Char */
code span.cn {
  color: #880000;
} /* Constant */
code span.co {
  color: #60a0b0;
  font-style: italic;
} /* Comment */
code span.cv {
  color: #60a0b0;
  font-weight: bold;
  font-style: italic;
} /* CommentVar */
code span.do {
  color: #ba2121;
  font-style: italic;
} /* Documentation */
code span.dt {
  color: #902000;
} /* DataType */
code span.dv {
  color: #40a070;
} /* DecVal */
code span.er {
  color: #ff0000;
  font-weight: bold;
} /* Error */
/* Extension */
code span.fl {
  color: #40a070;
} /* Float */
code span.fu {
  color: #06287e;
} /* Function */
code span.im {
  color: #008000;
  font-weight: bold;
} /* Import */
code span.in {
  color: #60a0b0;
  font-weight: bold;
  font-style: italic;
} /* Information */
code span.kw {
  color: #007020;
  font-weight: bold;
} /* Keyword */
code span.op {
  color: #666666;
} /* Operator */
code span.ot {
  color: #007020;
} /* Other */
code span.pp {
  color: #bc7a00;
} /* Preprocessor */
code span.sc {
  color: #4070a0;
} /* SpecialChar */
code span.ss {
  color: #bb6688;
} /* SpecialString */
code span.st {
  color: #4070a0;
} /* String */
code span.va {
  color: #19177c;
} /* Variable */
code span.vs {
  color: #4070a0;
} /* VerbatimString */
code span.wa {
  color: #60a0b0;
  font-weight: bold;
  font-style: italic;
} /* Warning */
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Bold.woff2") format("woff2"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Bold.woff") format("woff"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-BoldItalic.woff2") format("woff2"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-BoldItalic.woff") format("woff"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Italic.woff2") format("woff2"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Italic.woff") format("woff"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Regular.woff2") format("woff2"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Regular.woff") format("woff"), url("/styles/fonts/AtkinsonHyperlegible/AtkinsonHyperlegible-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/*!
 * Bootstrap Icons v1.11.1 (https://icons.getbootstrap.com/)
 * Copyright 2019-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("/styles/fonts/BootstrapIcons/bootstrap-icons.woff2?2820a3852bdb9a5832199cc61cec4e65") format("woff2"), url("/styles/fonts/BootstrapIcons/bootstrap-icons.woff?2820a3852bdb9a5832199cc61cec4e65") format("woff");
}
:root {
  --color-text: hsl(0, 0%, 10%);
  --color-bg-dark: hsl(0, 0%, 10%);
  --color-bg-light: hsl(0, 0%, 97%);
  --color-link-light: hsl(13, 91%, 38%);
  --color-link-dark: hsl(13, 91%, 38%);
  --color-mid-gray: hsl(9, 6%, 41%);
  --accept: hsl(162, 91%, 30%);
  --deny: hsl(13, 91%, 38%);
  --primary: hsl(35, 90%, 50%);
}

button {
  all: unset;
  cursor: pointer;
}

.button {
  border-radius: 4px;
  padding: 0.5em 1em;
  text-decoration: none;
  background-color: var(--color-mid-gray);
  color: var(--color-bg-light);
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button:hover {
  transition: 0.2s ease-in;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}

.menu-button {
  padding: 0 0.5rem;
}

.primary {
  background-color: var(--color-link-dark);
  color: var(--color-bg-light);
  text-shadow: none;
}

.accept {
  background-color: var(--accept);
}

.deny {
  background-color: var(--deny);
}

input, select, textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px #ddd;
  padding: 0.5rem 0.6rem;
  vertical-align: center;
  background-color: white;
  font-size: 0.75rem;
}

:root {
  --icon-box: "";
  --icon-calendar: "";
  --icon-external: "";
  --icon-hourglass-split: "";
  --icon-house: "";
  --icon-info-circle: "";
  --icon-list: "";
  --icon-x: "";
  --icon-filetype-html: "";
  --icon-code-slash: "";
}

.site-header {
  font-size: 0.9rem;
  min-height: 44px;
  background-color: #fff;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
  z-index: 9999;
}

.site-header .mobile-home {
  font-size: 1.5rem;
  padding-left: 1rem;
  margin-right: auto;
  display: none;
}

.site-header .menu {
  clear: both;
  max-height: 0;
}

.site-header .menu-icon {
  color: var(--color-link-dark);
  cursor: pointer;
  float: right;
  font-size: 1.5rem;
  padding-right: 1rem;
  margin-left: auto;
  display: none;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  order: 3;
}

.site-header .menu-btn {
  display: none;
}

.site-header .menu-btn:checked ~ .site-header-navbar {
  display: flex;
}

.site-header .menu-btn:checked ~ .menu-icon {
  --icon: var(--icon-x);
}

.site-header-navbar {
  clear: both;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.site-header-navbar > nav:not(:last-child) {
  padding-right: 2rem;
  border-right: 1px solid hsl(0, 0%, 90%);
}
.site-header-navbar > nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 2rem;
  height: 1.5rem;
}

@media (max-width: 1250px) {
  .site-header {
    font-size: 1rem;
  }
  .site-header .mobile-home {
    display: inline;
  }
  .site-header .menu-icon {
    display: inline;
    user-select: none;
  }
  .site-header .site-header-navbar {
    user-select: none;
    display: none;
    overflow: scroll;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 1rem 0;
    gap: 1rem;
    height: unset;
  }
  .site-header .site-header-navbar > nav:not(:last-child) {
    border-right: unset;
    padding-right: unset;
    border-bottom: 1px solid hsl(0, 0%, 90%);
    padding-bottom: 1rem;
    width: 100%;
  }
  .site-header .site-header-navbar > nav > ul {
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 2rem;
  }
}
.site-footer {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.5rem;
}

.site-footer > p {
  margin: 0;
}

.site-footer > nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.site-footer > nav > ul > li {
  padding: 0 1rem;
}
.site-footer > nav > ul > li:not(:last-child) {
  border-right: 1px solid hsl(0, 0%, 80%);
}

footer.prev-next {
  display: flex;
  gap: 0.25rem;
}

.video-content {
  width: 100%;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin: 0 6vw;
  max-width: 100%;
  gap: 1rem;
}

.video-item {
  background: white;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
}

.video-header > h2 {
  font-size: 1.1rem;
}

@media only screen and (max-width: 1200px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* Variables */
/* remove default margin/padding */
body,
html {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--color-bg-light);
  font-family: "Atkinson Hyperlegible", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
}

* {
  box-sizing: border-box;
}

#site-content {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: auto;
}

#site-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0.5rem;
  overflow-y: scroll;
}

#site-main p {
  text-align: justify;
  word-wrap: break-word;
}

a:link {
  text-decoration: none;
}

a {
  color: var(--color-link-dark);
}

.unstyled-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Site Layout */
.content {
  width: 100%;
  max-width: 50rem;
}

.tool {
  width: 50rem;
}

.content-header {
  font-weight: lighter;
  color: var(--color-mid-gray);
  text-align: center;
}

.content-header h3 {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 300;
  color: hsl(0, 0%, 65%);
}

/* Posts  */
.post-footer {
  font-size: 0.8rem;
  margin-top: 20px;
}

.post-header {
  margin-bottom: 1rem;
}

.post-header > h2 {
  margin-bottom: 0.5rem;
}

.post-subheader {
  display: flex;
  font-size: 0.8rem;
  color: var(--color-mid-gray);
}

.post-item {
  background-color: #fff;
  padding: 1rem 3rem 3rem 3rem;
  border-radius: 5px;
  border: 1px solid var(--color-mid-gray);
}

.post-subheader > .created-at {
  margin-left: auto;
}

.post-subheader > .created-by {
  margin-right: 1rem;
}

.post-list {
  list-style: none;
  padding: 0;
}
.post-list li:not(:last-child) {
  margin-bottom: 2rem;
}

/* tags */
.tag-inactive {
  padding: 0.1rem 0.75rem;
  margin: 0 0.1rem;
  border-radius: 5px;
  background-color: hsl(0, 0%, 40%);
  color: white;
}

.tag {
  padding: 0.1rem 0.75rem;
  margin: 0 0.1rem;
  border-radius: 5px;
}

.tag-red {
  background-color: hsl(0, 50%, 50%);
  color: white;
}

.tag-green {
  background-color: #BA2E09;
  color: white;
}

.tag-blue {
  background-color: hsl(200, 50%, 50%);
  color: white;
}

.tag:hover {
  background-color: var(--color-mid-gray);
}

.tag:link {
  text-decoration: none;
}

/* Article (Single Post site) */
.article-info {
  margin-top: 2rem;
  color: var(--color-mid-gray);
}

/* Typo */
p {
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
}

h1 {
  line-height: 1.05;
  font-size: 2rem;
}

h2 {
  line-height: 1.1;
  font-size: 1.4rem;
}

@media screen and (min-width: 25rem) {
  p {
    line-height: 1.4;
  }
}
@media screen and (min-width: 32rem) {
  p {
    line-height: 1.6;
  }
}
/* Address related */
.arev {
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: left;
}

.arev-row {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.flex-nogap {
  display: flex;
  margin: 0;
  padding: 0;
}

/* img style */
img {
  max-width: 100%;
  object-fit: cover;
}

.metadata-row {
  display: flex;
  gap: 0.5rem;
}

.with-icon:before, .metadata:before {
  content: var(--icon);
  font-family: bootstrap-icons;
  display: inline-block;
  vertical-align: -0.1em;
  margin-right: 0.33rem;
}
.with-icon.box, .box.metadata {
  --icon: var(--icon-box);
}
.with-icon.calendar, .calendar.metadata {
  --icon: var(--icon-calendar);
}
.with-icon.close, .close.metadata {
  --icon: var(--icon-x);
}
.with-icon.external, .external.metadata {
  --icon: var(--icon-external);
}
.with-icon.hamburger, .hamburger.metadata {
  --icon: var(--icon-list);
}
.with-icon.home, .home.metadata {
  --icon: var(--icon-house);
}
.with-icon.hourglass, .hourglass.metadata {
  --icon: var(--icon-hourglass-split);
}
.with-icon.info, .info.metadata {
  --icon: var(--icon-info-circle);
}
.with-icon.embedding, .embedding.metadata {
  --icon: var(--icon-code-slash);
}

.metadata {
  color: var(--color-mid-gray);
  font-size: 0.8rem;
}

.highlight {
  background-color: hsl(53, 92%, 75%);
  border-radius: 6px;
  padding: 3px 6px;
}

/* Tooltip */
[data-title]:hover:after {
  transition: all 0.1s ease 0.1s;
  visibility: visible;
}

[data-title]:after {
  content: attr(data-title);
  background-color: var(--color-bg-light);
  color: var(--color-text);
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translate(-50%);
  padding: 0.5rem;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-text);
  border-radius: 1rem;
  z-index: 99999;
  visibility: hidden;
}

[data-title] {
  position: relative;
}

/* Video IFrames */
.video-background {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/10) {
  .video-background {
    /* height = 100 * (9 / 16) = 56.25 */
    padding-bottom: 65.5%;
  }
}
@media (min-aspect-ratio: 16/9) {
  .video-background {
    /* height = 100 * (9 / 16) = 56.25 */
    padding-bottom: 56.25%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-background {
    /* width = 100 / (9 / 16) = 177.777777 */
    padding-bottom: 177.77%;
  }
}
/* Mobile */
@media only screen and (max-width: 720px) {
  html {
    line-height: 2;
  }
  .content {
    width: 100%;
  }
  .tool {
    width: 100%;
  }
  .post-item {
    padding: 0.5rem 1rem 1rem 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
}

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