/* FONT IMPORT */
@import url('<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Jersey+10&display=swap" rel="stylesheet">');

.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.gradmask {
background: linear-gradient(black 30%, red);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 2em;
font-weight:bold;
filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black);
}

.glowpad { margin: 0 auto; padding:10px; width:100%; box-sizing:border-box; }

.glow {
margin: 0 auto;
width:100%;
height:100%;
border:3px solid black;
background:black;
border-radius:50px;
box-shadow: 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black, 0px 0px 14px black;
color:#A60009;
overflow-y:auto;
}



.rotate10 {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
}
.rotate-10 {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
  
  
  }
.rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
  
  

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #eeeeee;
  --content-background-image: linear-gradient(to top, #000000dd, #FFA805dd);

  /* Text Colors: */
  --text-color: #cac8ef;
  --sidebar-text-color: #000000;
  --link-color: #000000;
  --link-color-hover: #ec0000;

  /* Text: */
  --font: 'Jersey 10', sans-serif;
  --heading-font: 'Jersey 10', sans-serif;
  --font-size:px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 10px;
  --border: 2px solid black;
  --round-borders: 0px;
  --sidebar-width: 150px;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: 0px;
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("https://ghosts-kin-site.neocities.org/Em's%20page/embg.gif");
  background-size: cover;
}

::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: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}



@font-face {
font-family: "Pixelated MS Sans Serif";
src: url("https://files.catbox.moe/1za99g.woff") format("woff");
src: url("https://files.catbox.moe/8fwbkl.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}   

.window, .title-bar {
font-family: "Pixelated MS Sans Serif", Arial;
-webkit-font-smoothing: none;
font-size: 15px;
}

.window {
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px #808080, inset 2px 2px #ffffff;
background: #c0c0c0;
color:#000;
padding: 3px;
}

.title-bar {
background:linear-gradient(90deg, #3A6B87, #6D9BA6, #CFFDFF);
padding: 3px 2px 3px 3px;
display: flex;
justify-content: space-between;
align-items: center;
}

.title-bar-text {
font-weight: bold;
color: white;
letter-spacing: 0;
margin-right: 24px;
}

.title-bar-controls {
display: flex;
}

.title-bar-controls button {
padding: 0;
display: block;
min-width: 16px;
min-height: 14px;
}

.title-bar-controls button:active {
padding: 0;
}

.title-bar-controls button:focus {
outline: none;
}

.title-bar-controls button[aria-label=Minimize]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/main/icon/minimize.svg");
background-position:bottom 3px left 4px;
background-repeat:no-repeat
}

.title-bar-controls button[aria-label=Maximize]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/4a2282dd9170cabf730fb5803d1153d86b2e94e3/icon/maximize.svg");
background-position:top 2px left 3px;
background-repeat:no-repeat;
}

.title-bar-controls button[aria-label=Close]{
background-image:url("https://raw.githubusercontent.com/jdan/98.css/main/icon/close.svg");
background-position:top 3px left 4px;
background-repeat:no-repeat;
margin-left:2px;
}

.window-body {
margin: 8px;
}

/* literally only part ive custom coded so it scrolls . i also like the effect the fieldset adds */
.fieldset {
letter-spacing: 1px;
border:1px gray solid;
box-shadow: white 1px 1px 0px inset, white 1px 1px 0px, white 0px 1px 0px, white 1px 0px 0px;
margin:0;
padding:10px;
overflow-y:auto; 
height: 190px;
}


/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.container {
  display: grid;
  grid-template-columns: 20% 1fr 20%; /* left | center | right */
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Left Sidebar */
.left {
  background: linear-gradient(to bottom, #000000dd,#C20700dd);
  color: var(--sidebar-text-color);
  height: 100%;
  padding: var(--padding);
  border: 3px solid black;
  overflow-y: auto;
}

/* Center Section (floating middle) */
.center {
  background: var(--content-background-image);
  color: var(--text-color);
  width: 80%;             /* adjust width as needed */
  max-width: 800px;       /* keeps it from stretching too wide */
  height: 60%;            /* controls how tall the middle box is */
  margin: auto;           /* centers it both vertically & horizontally within its grid cell */
  border: var(--border);
  border-radius:15%;
  padding: var(--padding);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right Sidebar */
.right {
  background: linear-gradient(to bottom, #C20700dd, #000000dd);
  color: var(--sidebar-text-color);
  height: 100%;
  padding: var(--padding);
  border: 3px solid black;
  overflow-y: auto;
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}



/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

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;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  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;
}

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 */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 20%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#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);
}


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: https://ghosts-kin-site.neocities.org/Em's%20page/embg.gif;
}


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block
}


blockquote, q {
	quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
	content: none
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold
}

del {
	text-decoration: line-through
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0
}

input, select {
	vertical-align: middle
}



.window {
	position: absolute;
	border: 2px solid #000;
	background: #EEE;
	border-radius: 5px;
	z-index: 1000;
	overflow: auto; 
}

.window.closed {
	display: none;
}

.window.minimizedWindow {
	display: none;
}

.window.fullSizeWindow {
	top: 0 !important;
	right: 0 !important;
	left: 0 !important;
	border-radius: 0;
	bottom: 32px !important;
	overflow: auto; 
}

.fullSizeWindow .ui-resizable-handle {
	display: none;
}

.windowHeader {
	background-color: #b7b7e0;
	text-align: right;
	border-bottom: 2px solid #000;
	padding: 2px;
	cursor: move;
	height: 28px;
}

.activeWindow .windowHeader {
	background-color: #8888d6;
}

.windowHeader>span {
	display: inline-block;
	cursor: pointer;
	border: 2px solid #000;
	margin-left: 4px;
	font-size: 19px;
	padding: 2px 10px;
	font-family: "Arial Black", Gadget, sans-serif;
	border-radius: 5px;
	line-height: 20px;
	width: 12px;
	height: 20px;
	position: relative;
	overflow: hidden;
}

.windowHeader>span:hover {
	background: rgba(255, 255, 255, 0.3);
}

.windowHeader>span.winclose:hover {
	background: #f15454;
}

.windowHeader>span>span {
	display: inline-block;
	height: 8px;
	width: 10px;
	position: absolute;
	top: 6px;
	left: 10px;
}

.winminimize>span {
	border-bottom: 3px solid #000;
}

.winmaximize>span {
	border: 2px solid #000;
	border-top: 3px solid #000;
}

.winmaximize>span:nth-child(2) {
	display: none;
}

.fullSizeWindow .winmaximize>span:nth-child(1) {
	margin: 2px 0 0 -4px;
}

.fullSizeWindow .winmaximize>span:nth-child(2) {
	display: inline-block;
	top: 3px;
	left: 12px;
}

.wincontent {
	padding: 10px;
	min-width: 200px;
	min-height: 140px;
	border: 2px solid #000;
	margin: 2px;
	border-radius: 0 0 5px 5px;
}

.windowHeader>strong {
	float: left;
	margin: 0px 3px 0 10px;
	line-height: 29px;
	font-size: 17px;
}



#icons {
	position: relative;
}

#icons a {
	display: block;
	cursor: pointer;
}


#templateLink {
	position: absolute;
	display: inline-block;
	bottom: 10px;
	right: 20px;
	font-weight: bold;
	font-size: 15px;
	color: #30478c;
}

/*Demo styles BEGIN*/

#window0 {
	top: 25%;
	left: 35%;
}



#window0 .wincontent {
	width: 440px;
	height: 300px;
}




/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .center {
    width: 90%;
    height: auto;
    margin: 20px auto;
  }
}
  
  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;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 20%;
  }
  
  .window {
	top: 0 !important;
	right: 0 !important;
	left: 0 !important;
	border-radius: 0;
	bottom: 32px !important;
	overflow: auto;  
}

#window0 .wincontent {
	width: 100%;
	height: 100%;
}

  #skip-to-content-link {
    font-size: 1rem;
  }
