.hoverable {
  cursor: help;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  scroll-behavior: smooth;
}

header {
  display: grid;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-template-columns: auto auto;
  margin: auto;
  padding: 1rem;
  gap: 0.5em;
  font-size: 1.25rem;
}
header .logo {
  justify-self: end;
  font-size: 2.5rem;
  text-decoration: none;
}
header .logo img {
  height: 0.9em;
  margin-right: 0.5rem;
}

#wrapper {
  display: flex;
  padding: 0.25rem 1rem;
  flex: 1;
  justify-content: center;
}
#wrapper main {
  flex: 1 0 700px;
  max-width: 700px;
}
#wrapper #toc_wrapper {
  max-width: 500px;
  flex: 1;
  position: sticky;
  top: 2rem;
  height: 100%;
  width: 100%;
  padding: 1rem 0;
  margin: 0 auto;
}
#wrapper #toc_wrapper .toc {
  padding: 0 1rem 1rem;
}
#wrapper #toc_wrapper .toc > li {
  list-style: none;
}
#wrapper #sidebar {
  flex: 0 0 300px;
  padding: 1rem;
}
#wrapper #sidebar > * {
  margin-bottom: 1rem;
}
#wrapper #sidebar #randomsponsor .random-sponsor {
  margin-bottom: 0.3rem;
}
#wrapper #sidebar #randomsponsor .random-sponsor img {
  width: 50px;
  float: left;
  margin-right: 0.5rem;
}
#wrapper #sidebar #randomsponsor .random-sponsor::after {
  content: "";
  display: table;
  clear: both;
}
#wrapper #sidebar #randomsponsor .random-sponsor h3 {
  margin-top: 0.25rem;
}

.statuslol {
  display: flex;
}
.statuslol .statuslol_emoji_container {
  flex: 0 0 25px;
  padding: 1rem;
  padding-right: 0;
  font-size: 2rem;
  text-align: center;
}
.statuslol .statuslol_content {
  flex: 1;
  padding: 1rem;
  padding-left: 0;
  text-align: right;
}
.statuslol .statuslol_content .statuslol_time {
  font-size: 0.9rem;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
footer .right {
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: right;
}
footer .right .copy {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
footer .right .copy a {
  font-size: 0;
}
footer .right.adblocked {
  text-align: center;
}
footer .ad {
  height: 45px;
}
footer .ad a img {
  height: 45px;
}

p {
  margin: 0.5rem 0;
}

#albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 1rem;
}
#albums .album {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-decoration: none;
}
#albums .album img {
  width: 100%;
  max-width: 150px;
}
#albums .album .subtitle {
  opacity: 0.9;
}

pre, code {
  border-radius: 0.2rem;
  padding: 0.2rem;
}

pre > code {
  padding: 0;
  border-radius: 0;
}

blockquote {
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}

#alert {
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.warning {
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.bento {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 1rem;
}
.bento > * {
  border-radius: 0;
  padding: 0;
  flex: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  justify-content: start;
}
.bento > * > * {
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.bento > * > .socials {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  justify-content: flex-end;
}
.bento > * > .socials a {
  padding: 0.25rem;
  border-radius: 0.25rem;
  flex: 1;
  text-align: center;
}
.bento > * #randomsponsor .random-sponsor {
  margin-bottom: 0.3rem;
}
.bento > * #randomsponsor .random-sponsor img {
  width: 50px;
  float: left;
  margin-right: 0.5rem;
}
.bento > * #randomsponsor .random-sponsor::after {
  content: "";
  display: table;
  clear: both;
}
.bento > * #randomsponsor .random-sponsor h3 {
  margin-top: 0.25rem;
}
.bento > * > img {
  margin: 0;
  padding: 0;
  border-radius: 0.5rem;
  width: 100%;
  height: 0;
  flex-shrink: 0;
  flex-grow: 1;
  object-fit: cover;
}
.bento > * > a {
  padding: 0;
  font-size: 0;
  text-decoration: none;
}
.bento > * > a img {
  margin: 0;
  border-radius: 0.5rem;
  height: 100px;
  width: 100%;
  object-fit: cover;
}

#cursorpit {
  position: relative;
}

.cursor {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.75;
  image-rendering: crisp-edges;
}

@media screen and (max-width: 1000px) {
  #wrapper {
    flex-direction: column-reverse;
  }
  #wrapper main {
    flex: 1;
    max-width: 100%;
  }
  #wrapper #sidebar {
    display: none;
  }
  #wrapper #toc_wrapper {
    position: relative;
    top: 0;
  }
  header > a.logo {
    font-size: 2rem;
  }
  footer {
    flex-direction: column;
  }
  footer .right {
    align-items: center;
  }
}
@font-face {
  font-family: ByeFont;
  src: url("/assets/fonts/ByeFont.woff2");
}
html {
  font-family: rubik, sans-serif;
}

.byefont {
  font-family: byefont, monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "ibm plex sans", monospace;
}

.bento .small {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

.hoverable, .more_underline {
  text-decoration: underline dashed;
}

.impact {
  font-family: Impact, sans-serif;
}

#albums .album a .subtitle {
  font-size: 0.75rem;
}

main > .post a {
  text-decoration: none;
}
main > .post a:hover, main > .post a:focus {
  text-decoration: underline;
}

code {
  font-family: "Fantasque Sans Mono", monospace;
  font-size: 12pt;
}

#alert {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

span.align-right {
  text-align: right;
}

#sidebar {
  display: none;
}

header {
  display: block;
}
header .logo {
  color: #000000;
}
header nav {
  display: none;
}

ul, ol {
  list-style: none;
}
ul li, ol li {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  margin-left: 0;
}

ul li::before {
  content: "- ";
}

footer {
  display: block;
}
footer span {
  display: block;
}
footer .links {
  display: none;
}

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