@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* you can change the colors of your whole layout using just these variables! */
:root {
  --layout-page-background: #000000;

  --layout-text: #f2f2f2;
  --layout-muted-text: #dfcfd6;
  --layout-link: #ffffff;
  --layout-link-hover: #dc0e94;
  --layout-header: #dc0e94;

  --layout-header-background1: #000000;
  --layout-header-background2: #dc0e94;
    --layout-header-glow: #000000;
  --layout-content-background: #09090d;

  --layout-collection-background: #000a00;
  --layout-navigation-background: #000a00;
  --layout-extra-background: #000a00;
  --layout-small-background: #000a00;

  --layout-border: #dc0e94;
  --layout-border-bright: #dc0e94;

  --layout-link-background: #08080b;
  --layout-link-hover-background: #250010;

  --layout-symbol: #dc0e94;

  --layout-scrollbar-track: #08080b;
  --layout-scrollbar-thumb: #dc0e94;
  --layout-scrollbar-thumb-hover: #dc0e94;

  --layout-gap: 14px;

  --layout-sidebar-width: 180px;
  --layout-header-height: 140px;
  --layout-max-width: 800px;
  --layout-max-height: 800px;
}


* {
  box-sizing: border-box;
  font-family: "Quantico", sans-serif;
}

html {
  min-height: 100%;
  background: var(--layout-page-background);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--layout-text);
  background: var(--layout-page-background);
  background-image: url(https://dl.glitter-graphics.com/pub/3766/3766877kmj1anfp4o.gif); 
  /* this is the layout background */
  background-repeat: repeat;

}

/* Entire layout */

.page-layout {
  width: min(
    var(--layout-max-width),
    calc(100vw - 32px)
  );
  height: min(
    var(--layout-max-height),
    calc(100dvh - 32px)
  );
  max-width: var(--layout-max-width);
  max-height: var(--layout-max-height);
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns:
    var(--layout-sidebar-width)
    minmax(0, 1fr);
  gap: var(--layout-gap);
  overflow: hidden;
  color: var(--layout-text);
}

/* Left column */

.page-sidebar {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows:
    140px
    minmax(170px, 1fr)
    minmax(150px, 1fr)
    120px;

  gap: var(--layout-gap);
}

/* Right column */

.page-main-column {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows:
    var(--layout-header-height)
    minmax(0, 1fr);

  gap: var(--layout-gap);
}

/* Shared box styles */

.sidebar-box,
.page-header,
.page-content {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--layout-border);
}

.sidebar-box {
  color: var(--layout-text);
}

.sidebar-box--collection {
  background: var(--layout-collection-background);
}

.sidebar-box--navigation {
  padding: 10px;
  font-family: "Creepster", system-ui;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--layout-navigation-background);
}

.sidebar-box--extra {
  background: var(--layout-extra-background);
}

.sidebar-box--small {
  background: var(--layout-small-background);
}

/* Scrollable sidebar contents */

.sidebar-box__scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 12px;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-box__scroll h2 {
  margin: 0 0 10px;
  font-family: "Creepster", system-ui;
  color: var(--layout-header);
  font-size: 17px;
  font-weight: normal;
  text-transform: lowercase;
}

.sidebar-box__scroll p {
  margin: 0 0 12px;
  color: var(--layout-muted-text);
  font-size: 10px;
  line-height: 1.5;
}

.sidebar-box__scroll p:last-child {
  margin-bottom: 0;
}

/* Collection links */

.sidebar-box--collection .sidebar-box__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  justify-content: center;
  align-items: center;
}

.sidebar-box--collection img {
    height: 30px;
    width: 200px;
}

/* Navigation */

.sidebar-nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.sidebar-nav li {
  margin: 0;
  padding: 0;
}

.sidebar-nav a {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--layout-link);
  background: var(--layout-link-background);
  border: 1px solid var(--layout-border);
  font-size: 12px;
  text-decoration: none;
  text-transform: lowercase;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus-visible {
  color: var(--layout-link-hover);
  background: var(--layout-link-hover-background);
  border-color: var(--layout-border-bright);
  transform: translateX(3px);
  outline: none;
}

.sidebar-nav__symbol {
  flex: 0 0 auto;
  color: var(--layout-symbol);
  font-size: 15px;
  line-height: 1;
  text-shadow:
    0 0 3px currentColor,
    0 0 6px currentColor;
}

.sidebar-nav a:hover .sidebar-nav__symbol,
.sidebar-nav a:focus-visible .sidebar-nav__symbol {
  color: var(--layout-link-hover);
}

/* Header */

.page-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--layout-text);
  /* this background is a css background, the colors will change with the variables but you can also remmove it and use any background youd like */
  background: var(--layout-header-background1);
  background-image:
    linear-gradient(45deg, var(--layout-header-background2) 25%, transparent 25%),
    linear-gradient(-45deg, var(--layout-header-background2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--layout-header-background2) 75%),
    linear-gradient(-45deg, transparent 75%, var(--layout-header-background2) 75%);
  background-size: 24px 24px;
  background-position:
    0 0,
    0 12px,
    12px -12px,
    -12px 0;

  text-align: center;
}

.page-header h1 {
  margin: 0;
  color: var(--layout-text);
  font-family: "Creepster", system-ui;
  font-size: 32px;
  font-weight: normal;
  text-shadow:
    0 0 10px var(--layout-header-glow),
    0 0 17px var(--layout-header-glow),
    0 0 24px var(--layout-header-glow);
}

/* main scrolling content */

.page-content {
  min-width: 0;
  min-height: 0;
  height: auto;

  padding: 24px;

  overflow-y: auto;
  overflow-x: hidden;

  color: var(--layout-text);
  background: var(--layout-content-background);
}

.page-content article {
  width: 100%;
  max-width: 760px;

  margin: 0 auto;
}

.page-content h2 {
  margin: 0 0 18px;
  font-family: "Creepster", system-ui;
  color: var(--layout-symbol);

  font-size: 24px;
  font-weight: normal;
  text-transform: lowercase;
}

.page-content p {
  margin: 0 0 18px;

  color: var(--layout-muted-text);

  font-size: 12px;
  line-height: 1.7;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-content a {
  color: var(--layout-link);
}

.page-content a:hover,
.page-content a:focus-visible {
  color: var(--layout-symbol);
}

/* scrollbars */

.page-content,
.sidebar-box--navigation,
.sidebar-box__scroll {
  scrollbar-width: thin;

  scrollbar-color:
    var(--layout-scrollbar-thumb)
    var(--layout-scrollbar-track);
}

.page-content::-webkit-scrollbar,
.sidebar-box--navigation::-webkit-scrollbar,
.sidebar-box__scroll::-webkit-scrollbar {
  width: 10px;
}

.page-content::-webkit-scrollbar-track,
.sidebar-box--navigation::-webkit-scrollbar-track,
.sidebar-box__scroll::-webkit-scrollbar-track {
  background: var(--layout-scrollbar-track);
}

.page-content::-webkit-scrollbar-thumb,
.sidebar-box--navigation::-webkit-scrollbar-thumb,
.sidebar-box__scroll::-webkit-scrollbar-thumb {
  background: var(--layout-scrollbar-thumb);

  border: 2px solid var(--layout-scrollbar-track);
}

.page-content::-webkit-scrollbar-thumb:hover,
.sidebar-box--navigation::-webkit-scrollbar-thumb:hover,
.sidebar-box__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--layout-scrollbar-thumb-hover);
}

.page-layout {
  overflow: visible;
}

.page-main-column {
  position: relative;
}

.page-content__decoration {
  position: absolute;
/* if you change the sticker image, play with the right, bottom, width and transform rotate numbers to make your image work the way you want */
  right: -65px;
  bottom: -25px;
  width: 200px;
  max-width: none;
  height: auto;
  z-index: 10;
  display: block;
  transform: rotate(-1deg);
  pointer-events: none;
  user-select: none;
}