

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #000000;
  --content-background-color: rgba(0, 0, 0, 0.75);
  --sidebar-background-color: rgba(0, 0, 0, 0);

  /* Text Colors: */
  --text-color: #ffffff;
  --sidebar-text-color: #ffffff;
  --link-color: #994af4ff;
  --link-color-hover: #581ebc;

  /* Text: */
  --font: Karmilla, monospace;
  /* Default: Monaco, replaced by GhostDeath */
  --heading-font: GhostDeath, monospace;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 0px solid transparent;
  --round-borders: 0px;
  --sidebar-width: 200px;
  --inset-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.12),
                  inset -1px -1px 0 rgba(0, 0, 0, 0.9),
                  inset 2px 2px 8px rgba(0, 0, 0, 0.5);
  --clip-corners: polygon(
    0% 0%,
    calc(100% - 15px) 0%,
    100% 15px,
    100% 100%,
    15px 100%,
    0% calc(100% - 15px)
  );
}

@font-face {
  font-family: GhostDeath;
  src: url('Fonts/Ghost\ Death.otf')  format('truetype');
}

@font-face {
  font-family: SpiderGotic;
  src: url('Fonts/SpiderGotic.otf')  format('truetype');
}

@font-face {
  font-family: Sketchy;
  src: url('Fonts/Sketchy.ttf')  format('truetype');
}

@font-face {                  
font-family: 'ApfelGrotezk';
src: url(https://humantooth.neocities.org/fonts/ApfelGrotezk-Regular.woff) format('woff');
font-weight: normal;
}

@font-face {                  
font-family: 'Fliege';
src: url(https://humantooth.neocities.org/fonts/FliegeMono-Regular.woff2) format('woff2');
font-weight: normal;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

/* Makes padding and borders included in element width/height so they don't cause overflow. */
* {
  box-sizing: border-box;
}

/* Centers the layout horizontally, sets the background, font, and base text color. */
body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("Assets/Backgrounds/MediaBG.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position: center top;
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* Stored code: #ffffff
/* -------------------------------------------------------- */

/* CSS grid container that positions all page regions (header, sidebars, main, footer). */
.layout {
  width: 1350px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header header" auto "leftSidebar main rightSidebar" auto "footer footer footer" auto / var(--sidebar-width) auto var(--sidebar-width);
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  position: relative;
}

/* Main content area placed in the center column of the grid. */
main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-image: repeating-linear-gradient(
    45deg,
    #ffffff 0px,
    #ffffff 3px,
    transparent 3px,
    transparent 12px
  ) 6;
  border-radius: var(--round-borders);
  box-shadow: var(--inset-shadow);
  clip-path: var(--clip-corners);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

/* Top banner spanning the full grid width. */
header {
  grid-area: header;
  font-size: 1.2em;
  /* border: var(--border); */
  /* border-color: var(--border-color-header); */
  border: none;
  border-radius: var(--round-borders);
  /* background: var(--content-background-color); */
  background: transparent;
}

/* Inner wrapper that controls header padding and text alignment. */
.header-content {
  padding: var(--padding);
  text-align: center;
}

/* Site name/logo text styling. */
.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

/* Optional full-width banner image inside the header. */
.header-image img {
  width: 100%;
  height: auto;
}

.logo {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

/* Shared styles applied to both left and right sidebars. */
aside {
  grid-area: aside;
  border: var(--border);
  border-image: repeating-linear-gradient(
    45deg,
    #ffffff 0px,
    #ffffff 3px,
    transparent 3px,
    transparent 12px
  ) 6;
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
  /* box-shadow: var(--inset-shadow); */
  clip-path: var(--clip-corners);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Grid placement for each sidebar. */
.left-sidebar {
  grid-area: leftSidebar;
}

.right-sidebar {
  grid-area: rightSidebar;
}

/* Bold heading displayed at the top of each sidebar section. */
.sidebar-title {
  font-weight: bold;
  font-size: 2.0em;
  font-family: var(--heading-font);
}

/* Adds vertical spacing between sidebar sections, but not after the last one. */
.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

/* Indents lists inside sidebar sections. */
.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

/* Adds top margin to non-text elements (images, widgets, etc.) inside a section. */
.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

/* Bottom bar spanning the full grid width with centered text. */
footer {
  grid-area: footer;
  border: var(--border);
  border-image: repeating-linear-gradient(
    45deg,
    #ffffff 0px,
    #ffffff 3px,
    transparent 3px,
    transparent 12px
  ) 6;
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  background: var(--sidebar-background-color);
  display: flex;
  justify-content: center;
  /* box-shadow: var(--inset-shadow); */
  clip-path: var(--clip-corners);
}

/* Footer link colors matching the site theme. */
footer a,
footer a:visited {
  color: inherit;
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

/* Shared nav spacing, used in both the header and sidebars. */
nav {
  margin-bottom: 3em;
}

/* Spacing below a nav title label when nav appears inside a sidebar. */
nav .sidebar-title {
  margin-bottom: 0.5em;
}

/* Resets default list styles for nav menus. */
nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

/* Removes default spacing between list items. */
nav ul li {
  margin-bottom: 0;
}

/* Makes top-level links and labels inline-block for proper click areas. */
nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

/* Padding for top-level nav links and summary toggle elements. */
nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

/* Highlights the currently active page link. */
nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

/* Makes <details>/<summary> elements behave as clickable dropdowns. */
nav ul summary {
  cursor: pointer;
}

/* Indents nested sub-menu links. */
nav ul ul li > a {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--background-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  border: var(--border);
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-8deg); }
  75%       { transform: rotate(8deg); }
}

header nav ul li a:hover img {
  animation: wobble 1.2s ease-in-out infinite;
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

/* Increases line height for better readability in the main content area. */
main {
  line-height: 1.5;
}

/* Link colors within main content. */
main a,
main a:visited {
  color: inherit;
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

/* Vertical spacing for paragraphs and media elements. */
main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

/* List spacing and indentation. */
main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

/* Styled pull-quote / indented block. */
main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

/* Preformatted text block (preserves whitespace and line breaks). */
main pre {
  margin: 1em 0 1.5em;
}

/* Inline code snippets. */
main code {
  text-transform: none;
}

/* Centered content blocks. */
main center {
  margin: 1em 0;
  padding: 0 1em;
}

/* Horizontal divider line. */
main hr {
  border: 2px solid;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

/* HEADER STYLES WOOOO */
main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

/* Inline image — scales down if too wide but won't stretch beyond its natural size. */
.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Image that stretches to fill the full content width. */
.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Row of images displayed side by side with equal width. */
.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

/* Each image in a row fills its share of the row with uniform padding. */
.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* Visually hidden link that slides into view on keyboard focus, letting keyboard users skip straight to main content. */
#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  /* Resets font size for small screens. */
  body {
    font-size: 14px;
  }

  /* Collapses the grid to a single column on small screens. */
  .layout {
    width: 100%;
    grid-template: "header" auto "leftSidebar" auto "main" auto "footer" auto / 1fr;
  }

  /* Hides the right sidebar on small screens to save space. */
  .right-sidebar {
    display: none;
  }

  /* Removes extra nav padding on small screens. */
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  /* Removes max-height and reduces padding for the main content area on small screens. */
  main {
    max-height: none;
    padding: 15px;
  }

  /* Wraps images onto multiple rows instead of forcing a single cramped row. */
  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  /* Slightly smaller skip link on small screens. */
  #skip-to-content-link {
    font-size: 1rem;
  }

}

/* -------------------------------------------------------- */
/* BOOK MENU CODE */
/* -------------------------------------------------------- */

figure.blurfilter{
	margin: 0;
	padding: 0;
	display: inline-block;
	position: relative;
	overflow: hidden; /
}
 
.figcaption img {
width: 10px;
}
 
figure.blurfilter img{
	display: block;
	width: 250px;
	height: 334px;
	object-fit: cover;
	transition: all 0.4s 0.4s;
}
 
figure.blurfilter figcaption{
	position: absolute;
	display: block;
	text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	text-align: center;
	background: white;
	color: black;
	padding: 10px;
	z-index: 100;
	width: 90%;
	height: 90%;
	overflow: auto;
	top: 5%;
	left: 5%;
  font-family: Arial;
	font-size: 16px;
	opacity: 0;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all .4s;
}
 
 
figure.blurfilter figcaption h3{
	border-bottom: 1px solid red;
	text-align: left;
	width: 90%;
	margin: 0;
}
 
figure.blurfilter figcaption p{
	text-align: left;
	margin-top: 10px;
	line-height: 1.5;
}
 
figure.blurfilter figcaption a{
	text-decoration: none;
}
 
figure.blurfilter:hover img{
  -webkit-filter: blur(5px);
  filter: blur(5px);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
 
figure.blurfilter:hover figcaption{
	opacity: 1;
	-moz-transition: all .4s .4s;
	-webkit-transition: all .4s .4s;
	transition: all .4s .4s;
}
 
figure.slidey figcaption{
	-webkit-transform: rotateY(90deg);
	transform: rotateY(90deg);
}
 
figure.slidey:hover figcaption{
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
}
.pixel {
width: 1em !important;
filter: none !important;
display: inline-block;
}
figcaption {
overflow-y: scroll;
}

