@import url(https://fonts.bunny.net/css?family=averia-serif-libre:300,700);
:root {
  --body-font: "Averia Serif Libre", display;
  --headers-font: "Averia Serif Libre", display;
  --meta-font: "Averia Serif Libre", display;
  --base-background: #ffffff;
  --base-foreground: #ffffff;
  --body-text-color: #ffffff;
  --body-titles-color: #ffffff;
  --card-titles-color: #ffffff;
  --link-color: #ff2889;
  --shadow-color: #0b0d0f;
  --link-hover-color: #bc7c9c;
  --noise-img: url("../assets/img/noise-big.png");
  --body-gradient: linear-gradient(to bottom, #30cfd0 0%, #330867 100%);
  --body-gradient: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
  --body-gradient: linear-gradient(to top, #121518 0%, #363d42 100%);
  --body-background: #2f2b96;
  --post-header-gradient-simple: linear-gradient(to bottom right, #ff2889 0%, #5615be 100%);
  --page-header-gradient-simple: linear-gradient(to bottom right, #ff2889 0%, #5615be 100%);
}

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

* {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
  max-inline-size: 100%;
  block-size: auto;
  border-radius: 0.5rem;
}

dialog img {
  max-width: unset;
  height: unset;
  display: unset;
  max-inline-size: unset;
  block-size: unset;
  border-radius: unset;
  min-width: 100%;
}

@media (max-width: 767.98px) {
  p img {
    width: calc(100% + 6rem);
    max-width: calc(100% + 6rem);
    margin-left: -3rem;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body,
html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

html {
  font-size: 62.5%;
}

body {
  margin: unset;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 3.1rem;
  font-family: var(--body-font);
  font-weight: 500;
  font-variant-ligatures: none;
  color: var(--body-text-color);
  background-color: var(--base-foreground);
  background: var(--body-gradient);
  background-blend-mode: color-burn;
  background-attachment: fixed;
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.page .container > p:first-child::first-letter,
.post .container > p:first-child::first-letter,
.page h2 + p::first-letter,
.post h2 + p::first-letter {
  font-family: var(--headers-font);
  font-size: 300%;
  color: var(--body-text-color);
  padding: 6px 3px;
  margin-right: 8px;
  float: left;
}

header {
  padding: 0;
}

footer.footer {
  border-top: 1px solid var(--body-titles-color);
  margin: 6rem auto 0 auto;
  padding: 1rem 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  footer.footer {
    padding: 1rem 0;
  }
}
footer.footer ul {
  padding: 0;
}
footer.footer ul li {
  font-family: var(--meta-font);
}
footer.footer ul li a,
footer.footer ul li a:link,
footer.footer ul li a:visited {
  color: var(--link-color);
  text-decoration: none;
}
footer.footer ul li a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

a,
a:link,
a:visited {
  color: var(--link-color);
  text-decoration-color: var(--link-color);
  text-decoration-thickness: 2px;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration-color: var(--link-hover-colorcolor);
  text-decoration-thickness: 2px;
}

h1 {
  font-family: var(--headers-font);
  color: var(--body-titles-color);
  padding: 1rem 0 2rem;
}

h2,
h3 {
  font-family: var(--headers-font);
  color: var(--body-titles-color);
  margin-top: 9rem;
}

h1 {
  font-size: 4.3rem;
  line-height: 4.3rem;
  text-transform: uppercase;
}

h2 {
  font-size: 3.8rem;
  line-height: 3.8rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-top: 5rem;
}

p {
  padding: 0;
  margin: 3rem 0 0 0;
}

ul,
ol {
  padding: 1rem 0 2rem 5rem;
}
@media (max-width: 767.98px) {
  ul,
  ol {
    padding: 1rem 0 2rem 3rem;
  }
}

hr {
  margin: 3rem 0 3rem 0;
  border: 1px solid var(--body-titles-color);
  border-width: 1px 0 0 0;
}

.navigation ul {
  display: flex;
  padding: 2rem 0;
}

.navigation ul li {
  list-style-type: none;
  padding: 0 1rem 0 0;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 767.98px) {
  .container {
    padding: 0 3rem;
  }
}
.container-full {
  max-width: unset;
}

code,
pre {
  font-family: Consolas, Monaco, "Andale Mono", "Lucida Console", monospace !important;
  hyphens: none;
  font-size: 1.5rem !important;
  border-radius: 0.5rem;
}

time {
  font-size: 1.6rem;
}

blockquote {
  border-left: 0.5rem solid var(--body-text-color);
  margin: 1rem 0 1rem 1rem;
  padding-left: 3rem;
  font-style: italic;
}
@media (max-width: 767.98px) {
  blockquote {
    margin: 1rem 0;
  }
}

aside {
  border-left: 0.5rem solid var(--body-titles-color);
  margin: 1rem 0 1rem 1rem;
  padding-left: 3rem;
  font-style: italic;
  color: var(--body-titles-color);
}

header.header a.site-title {
  display: inline-block;
  font-size: 2.5rem;
  font-family: var(--headers-font);
  text-transform: none;
  padding: 2rem 0 0 0;
  color: var(--body-text-color);
  text-decoration: none;
}
header.header a.site-title .site-logo {
  width: 3rem;
  height: 3rem;
  max-width: 3rem;
  border-radius: 0;
  display: inline-block;
}
header.header a.site-title .site-logo path {
  fill: var(--logo-color);
}
header.header a.site-title:hover {
  text-decoration: none;
}

.home-page header.header {
  margin-bottom: 6.5rem;
}

.article-list article {
  margin-bottom: 6rem;
}
.article-list article h2 {
  font-size: 4.3rem;
  margin: 0 0 0.2rem 0;
}
.article-list article h2 a,
.article-list article h2 a:link,
.article-list article h2 a:visited {
  color: var(--body-titles-color);
  text-decoration: none;
}
.article-list article h2 a:hover {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.article-list article p {
  padding: 0;
  margin: 0;
}
.article-list time.time {
  font-family: var(--meta-font);
  font-size: 1.8rem;
  margin-top: 1rem;
}

.post-container .post-meta {
  display: flex;
  width: 100%;
  font-family: var(--meta-font);
}
@media (max-width: 767.98px) {
  .post-container .post-meta {
    flex-direction: column;
  }
}
.post-container .post-meta .meta-separator {
  display: flex;
  align-items: center;
  padding: 1rem 1rem 0 1rem;
}
@media (max-width: 767.98px) {
  .post-container .post-meta .meta-separator {
    display: none;
  }
}
.post-container .post-meta .time {
  font-size: 1.8rem;
  padding: 1rem 0 0 0;
}
.post-container .post-meta .taglist {
  padding: 1rem 0 0 0;
  font-size: 1.8rem;
}
.post-container .post-meta .taglist a {
  text-decoration: none;
  color: var(--base-background);
  background-color: var(--link-color);
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}
.post-container .post-meta .taglist a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--link-color);
  background-color: var(--base-background);
}
@media (max-width: 767.98px) {
  .post-container .post-meta .taglist {
    padding: 0;
  }
}
.post-container .post-header {
  max-width: 120rem;
  padding: 12rem 0;
  margin: 2rem auto 6rem auto;
  background-attachment: unset;
  background-blend-mode: hard-light, hard-light, overlay;
  background-position: top center;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 60px var(--shadow-color);
}
@media (max-width: 767.98px) {
  .post-container .post-header {
    padding: 6rem 0;
    border-radius: 0;
  }
}
.post-container .post-header .container {
  padding: 3rem;
}
@media (max-width: 767.98px) {
  .post-container .post-header .container {
    margin: 2rem;
    padding: 1rem 0;
  }
}
.post-container .post-title {
  font-size: 8.6rem;
  line-height: 8.6rem;
  font-family: var(--headers-font);
  letter-spacing: 0.2rem;
  color: var(--body-titles-color);
  padding-bottom: 4rem;
  border-bottom: 5px solid var(--body-titles-color);
}
@media (max-width: 767.98px) {
  .post-container .post-title {
    font-size: 4.5rem;
    line-height: 4.8rem;
  }
}
.post-container .post-subtitle {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.5rem;
  color: var(--body-titles-color);
  margin-top: 4rem;
  padding-top: 0;
  text-shadow: 0px 0px 5px var(--subtitles-backshadow);
}
@media (max-width: 767.98px) {
  .post-container .post-subtitle {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

.page .page-header {
  padding: 6rem 0;
  margin: 1rem 0 4rem 0;
  background: var(--noise-img), var(--page-header-gradient-simple);
  background-attachment: fixed;
  background-blend-mode: hard-light;
}
.page .page-title {
  font-size: 6.6rem;
  line-height: 6.6rem;
  font-family: var(--headers-font);
  color: var(--body-titles-color);
  margin-bottom: 3rem;
  padding-bottom: 0;
  text-shadow: 0px 1px 5px var(--titles-backshadow);
}

.tag-page {
  padding-top: 6rem;
}
.tag-page h1 {
  margin-bottom: 3rem;
}

.spoiler-alert {
  border: 1px solid var(--base-foreground);
}