:root {
  --body-bg-color: #121212;
  --menu-bg-color: #121212;
  --content-bg-color: #121212;
  --footer-bg-color: #212121;
  --code-bg-color: rgba(255,255,255,0.12);
  --text-high-color: rgba(255,255,255,0.8);
  --text-color: rgba(255,255,255,0.66);
  --text-active-color: #d32f2f;
  --link-color: #d32f2f;
  --btn-bg-color: #d32f2f;
  --btn-color: rgba(255,255,255,0.66);
  --shadow-color: rgba(0,0,0,0.25);
  --border-color: #212121;
}
@media (prefers-color-scheme: light) {
  :root {
    --body-bg-color: radial-gradient(100% 100% at 0% 0%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 36.98%), linear-gradient(135deg, #eb757f 26.56%, #42a5f5 75.32%, #ebe78d 96.87%);
    --menu-bg-color: rgba(255,255,255,0.25);
    --content-bg-color: rgba(255,255,255,0.25);
    --footer-bg-color: #fafafa;
    --code-bg-color: rgba(0,0,0,0.07);
    --text-high-color: rgba(0,0,0,0.95);
    --text-color: rgba(0,0,0,0.91);
    --text-active-color: #ef5350;
    --link-color: #ef5350;
    --btn-bg-color: #ef5350;
    --btn-color: rgba(255,255,255,0.66);
    --shadow-color: rgba(91,139,179,0.3);
    --border-color: rgba(255,255,255,0.18);
  }
}
html {
  scrollbar-color: #606060 transparent;
}
::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar-thumb {
  height: 56px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: #606060;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;300;400;500&display=swap");
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  font-weight: 300;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}
.btn {
  background-color: var(--btn-bg-color);
  color: var(--btn-color);
  padding: 8px 30px;
  border-radius: 60px;
  cursor: pointer;
  filter: drop-shadow(0px 3px 9px var(--btn-bg-color));
  letter-spacing: 1px;
  transition: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875em;
}
.btn:hover {
  letter-spacing: 3px;
  transform: unset;
}
a,
.showcase header .menu a {
  display: inline-block;
  color: var(--link-color);
  text-decoration: none;
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover,
.showcase header .menu a:hover {
  transform: translateY(-3px);
}
code {
  font-family: 'Source+Code+Pro', sans-serif;
  font-size: 0.9em;
  background-color: var(--code-bg-color);
  padding: 3px 6px;
  border-radius: 3px;
}
blockquote {
  border-left: 4px solid var(--code-bg-color);
  padding: 0 15px;
  margin: 0;
}
.hljs {
  background-color: var(--code-bg-color);
}
figure {
  padding: 0;
  margin: 0;
}
a.fancybox {
  margin: 1.25em 0;
  text-align: center;
}
a.fancybox p.image-caption {
  text-align: center;
  font-size: 0.8em;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}
a.fancybox:not(.inline) {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px 0;
  width: 100%;
}
table td,
table th {
  padding: 8px;
  vertical-align: middle;
  border: 1px solid var(--code-bg-color);
}
table th {
  border-bottom: 3px solid var(--code-bg-color);
}
.video-container {
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  width: 100%;
}
.video-container iframe,
.video-container object,
.video-container embed {
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
img.lazyload:not([src]) {
  visibility: hidden;
}
.background {
  background: var(--body-bg-color);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}
.showcase {
  color: var(--text-color);
  width: 100%;
  min-width: 320px;
}
.showcase header {
  height: 5em;
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background: var(--menu-bg-color);
  box-shadow: 0 8px 32px 0 var(--shadow-color);
}
.showcase header.active {
  height: auto;
}
.showcase header .header {
  padding: 0 3em;
  height: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.showcase header .header .toggle {
  width: 32px;
  height: 32px;
  background-image: url("../images/menu.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.showcase header .header .toggle.active {
  background-image: url("../images/close.svg");
}
.showcase header .header .logo {
  margin-left: 1em;
  display: flex;
  justify-content: center;
  font-weight: 300;
}
.showcase header .header .space {
  flex: 1;
}
.showcase header .header .explore {
  text-transform: uppercase;
}
.showcase header .menu {
  position: relative;
  z-index: -1;
  height: 5em;
  padding: 0 3em;
  margin-top: -300px;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase header .menu.active {
  margin-top: 0;
}
.showcase header .menu a {
  color: var(--text-color);
}
.showcase header .menu a.active {
  color: var(--text-active-color);
  font-weight: 500;
}
.showcase header .menu a+a {
  margin-left: 2.5em;
}
.showcase footer {
  background: var(--footer-bg-color);
  padding: 30px 50px 10px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
}
.showcase footer > * {
  margin-top: 20px;
}
.showcase footer ul {
  padding-left: 0;
}
.showcase footer .powered {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.showcase footer .powered > * {
  margin: 8px 0;
}
.showcase footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase footer .social li {
  list-style: none;
}
.showcase footer .social li img {
  width: 20px;
  height: 20px;
}
.showcase footer .social li+li {
  margin-left: 0.8em;
}
.showcase footer .other_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.showcase footer .other_menu ul {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.showcase footer .other_menu ul li {
  list-style: none;
}
.showcase footer .other_menu ul li + li {
  margin-left: 0.8em;
}
.showcase footer .license {
  font-size: 0.5em;
}
.showcase footer .license p {
  justify-content: left;
}
.showcase main {
  padding-top: 7em;
  padding-bottom: 5em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase main #content {
  background: var(--content-bg-color);
  min-width: 750px;
  max-width: 1000px;
}
.showcase main #content::before {
  content: ' ';
  display: block;
  pointer-events: none;
  visibility: hidden;
}
.showcase main #content .comments {
  padding: 3.125em;
  padding-bottom: 0;
}
.showcase main #content img {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.showcase main #content img:not(.inline) {
  display: block;
}
article {
  padding: 0 50px;
  line-height: 2;
  letter-spacing: 1px;
}
article .title,
article .content {
  text-align: center;
}
article .title :not(.fancybox),
article .content :not(.fancybox) {
  text-align: left;
}
article .title > *,
article .content > * {
  margin-bottom: 1.25em;
  display: block;
}
article .title .right,
article .content .right {
  text-align: right;
  margin-left: auto;
}
article .title .center,
article .content .center {
  text-align: center;
}
article .title .inline,
article .content .inline {
  display: inline-block;
}
article h1 {
  text-align: center;
  font-size: 2.2em;
  font-weight: 300;
}
article h2 {
  font-size: 1.8em;
}
article h3 {
  font-size: 1.4em;
}
article h4 {
  font-size: 1.2em;
}
article ul li {
  line-height: 2.3;
}
article img {
  filter: drop-shadow(0px 4px 4px var(--shadow-color));
  border-radius: 5px;
}
article img:not([width]) {
  width: 100%;
}
@media screen and (max-width: 780px) {
  body {
    font-size: 0.875em;
  }
  .showcase header .header {
    padding: 0 20px;
  }
  .showcase header .header .logo {
    display: none;
  }
  .showcase header .menu {
    height: auto;
    padding: 0 20px 20px 20px;
    flex-direction: column;
    align-items: left;
  }
  .showcase header .menu a {
    padding: 10px;
  }
  .showcase header .menu a+a {
    margin-left: 0;
  }
  .showcase main #content {
    min-width: calc(100vw - 20px);
    margin: 0 10px;
  }
  article {
    padding: 0 20px;
  }
  article .title {
    font-size: 1.8em;
  }
  article img {
    width: 100%;
  }
  article .content a.fancybox {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 1em;
  }
}
@media screen and (min-width: 2560px) {
  body {
    font-size: 1.8em;
  }
  .showcase main #content {
    max-width: 2000px;
  }
}
@media (prefers-color-scheme: light) {
  .showcase header {
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid var(--border-color);
  }
  .showcase header .header {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--border-color);
  }
  .showcase header .menu {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .showcase main #content {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 8px 8px 32px 0 var(--shadow-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
  }
}
