/* FONT IMPORT */
@import url('https://fonts.google.com/specimen/Anonymous+Pro/license?preview.size=22&categoryFilters=Appearance:%2FMonospace%2FMonospace');
  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #000000;

  /* Text Colors: */
  --text-color: #66FF33;
  --link-color: #CCFF00;
  --link-color-hover: #CCFF44;

  /* Text: */
  --font: 'MS Sans Serif', sans-serif;
  /* Other Settings: */
}

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

* {
  box-sizing: border-box;
}

body {
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("images/batman/neobkgnd.gif");
  cursor: url("cursors/3DArrowShadow.png"), auto;
}

::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;
}

 .change-cursor:hover {
  /* You must provide a fallback keyword (like 'auto' or 'pointer') at the end */
  cursor: url('cursors/Wii-Pointer-Blue.png'), auto; 
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

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

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

/* Sidebar Blockquote: */

/* Site Button: */

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

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

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

/* Rounded border */
hr.rounded {
  border-top: 8px solid #FFCCCC;
  border-radius: 5px;
}

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

/* -------------------------------------------------------- */
/* 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);
}

