/* start light mode styling */
	:root {
		--text: rgb(39, 63, 75);
		--border: lightgrey;
		--accent: #4fa4d4;
		--bg: #c4dde0;
		--gradientTop: white;
		--gradientBottom: rgb(240, 248, 255, .8);
		--highlight:rgb(102, 197, 189);
		--bgImage: url('images/stars.gif')
	}
	header {
		background: url('https://i.imgur.com/ZfaIqwZ.png');
	}
/* end light mode styling */
@font-face {
  font-family: 'troglodytepop';
  src: url(https://dl.dropbox.com/s/qj5rw9r6sf4usau/spacerangerlasital.ttf);
}

@font-face{
	font-family: 'hearts';
	src: url(https://files.catbox.moe/9m5xkl.ttf);
}
* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'MS UI Gothic', sans-serif;
	color: var(--text);
	cursor: url('images/cursor2x.png'), auto !important;

	/* page background pattern */
	background-color: var(--gradientTop);
	background-image:  var(--bgImage);
}

a:link, nav a:visited { 
	color: var(--highlight);
}
.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 1px dashed var(--accent);
	outline-offset: 4px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
	background-color: var(--bg);
	background-image:  url('');
}
/* these control the column widths */
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }


header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 130px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 0px;
	position: relative;
	font-family: 'troglodytepop';
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--gradientTop);
}


nav {
	border: 2px ridge var(--border);
	border-radius: 0px;
	padding: 0px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: var(--bg);
	border-radius: 0px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: var(--highlight);
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border:2px ridge var(--border);
	border-radius: 5px;
}


section {
	border: 2px ridge var(--border);
	border-radius: 0px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	padding: 5px;
}
.update{
  list-style-type: none;
  padding-left:2px;
  background-color:var(--gradientTop);
  border:var(--border); 
  margin-bottom:2px;
  margin:0px;
  height:155px;
  overflow:auto;
  li:nth-child(even) {
    background-color: var(--gradientBottom);
}
}
footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: x;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
	cursor: url('images/pointer2x.png'), auto !important;
}
a:visited {
	color: var(--accent);
}

::selection {
/* Change highlight background color */
background: var(--highlight);
/* Change highlight text color */
color: white;
}

/* This is what causes the actual smooth scrolling */
@keyframes scroll-r2l {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Change the '10s' in this to change how fast it scrolls! */
.scroll-r2l {
  animation: scroll-r2l 45s linear infinite;
}

/* Left-to-Right */
@keyframes scroll-l2r {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.scroll-l2r {
  animation: scroll-l2r 20s linear infinite;
}

/* 'Display: Flex' is extremely important to use here so all the items inside the marquee line up correctly, and the duplicated container lines up properly with the original */
.marquee {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: unset;
}

.marquee-items {
  display: flex;
  flex-shrink: 0;
  height: 100%;
  min-width: 100%;
  position: relative;
}

/* Changes to this class will only affect the children
of the marquee-items, and not all of their descendants.
Make changes here if you want spaces in-between the
marquee items or other effects and styles!*/
.marquee-items > * {
  margin: 2px;
  height: 20px;
}

.paused {
  -webkit-animation-play-state:paused;
  -moz-animation-play-state:paused;
  -o-animation-play-state:paused;
  animation-play-state:paused;
}