/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: VCR;
  src: url(VCR.ttf);
}

@font-face {
  font-family: 'OMORI';
  src: url('https://nljc.neocities.org/style/font/OMORI.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

		h1 {
  font-size: 30px;
  color: red;
  font-family: 'VCR.ttf', VCR;
}

	h2 {
  font-size: 20px;
  color: red;
  font-family: 'VCR.ttf', VCR;
}
/* What the actual everliving fuck does this do?*/
		a img {
  width: 82px;    
  height: 32px;
  object-fit: contain;
 
}
/*spin spin spin*/
.spin{
			animation:spin 2.2s linear infinite;
			display:inline-block;
		}
		@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}

body {
  /* Fallback to default 'auto' if image fails to load */
  cursor: url('Images/pointer.png'), auto;
}

/* Targeted cursor for buttons */
button {
  cursor: url('Images/click.png'), pointer;
}   
/*The actual, you know, STYLE?*/
		body {
			margin:0;
			padding:0;
			font-family:"VCR","Times New Roman",serif;
			color:#eeeeee;
			background-color:#000000;
			background-image:url(".png");
			background-size:cover;
			background-position:center;
			background-attachment:fixed;
  			background-repeat:no-repeat; }
  			
    .nljcbanner1 {
  background-image: url('https://nljc.neocities.org/style/bg/staticblue.gif');
  background-size: cover;
  color: #ffffff;
  font-family: 'OMORI', sans-serif;
  font-size: 25px;
  padding: 0px; 
  margin: 20px; 
  border: 1px solid #000080; 
  border-radius: 12px;
}

    .nljcbanner2 {
  background-color: rgba(3, 3, 3, 0.7); 
  padding: 0px; 
  margin: 0px; 
  border: 1px solid #000080; 
  border-radius: 12px;
}
