/* start light mode styling */
	:root {
		--text: darkslategrey;
		--border: lightgrey;
		--accent: silver;
		--bg: gainsboro;
		--gradientTop: white;
		--gradientBottom: gainsboro;
	}
	header {
		background: url('**');
	}
/* end light mode styling */


/* start dark mode styling */
	@media (prefers-color-scheme: dark) {
		:root {
		  --bg: lightgray;
			--text: white;
			--border: white;
			--accent: silver;
			--bg: slategray;
			--gradientBottom: black;
			--gradientTop: darkslategrey;
			a:link { color: crimson; }
		}
		header {
			background: url('**');
		}
	}
/* end dark mode styling */

@keyframes invertFadeIn {
			from {
				opacity: 0;
				filter: invert(1);
			}
			to {
				opacity: 1;
				filter: invert(0);
			}
		}
		body {
			animation: invertFadeIn 1.5s ease forwards;
		}

* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: white;

	/* page background pattern */
	background-image: url(https://mcblog.neocities.org/DITHERREVELATIONS.jpg);
}

p, h1, h2, h3, h4, ul, ol {
  	font-family: 'MS PGothic', sans-serif;
	color: var(--text);
}

.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 3px solid lavenderblush;
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
	background-color: red;
	background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, black 10px ), repeating-linear-gradient(dimgray 10px);
}
/* 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: 120px; /* change banner height here*/
	border: 2px ridge plum;
	border-radius: 5px;
	position: relative;
}
header span {
	font-size: 4.0rem;
	position: absolute;
	bottom: 30px;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px darkorchid,
		-1px 1px darkorchid,
		1px -1px darkmagenta,
		-1px -1px purple;
	color: gainsboro;
}
header span1 {
	font-size: 1.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	text-shadow: 1px 1px lavender,
		-1px 1px linen,
		1px -1px floralwhite,
		-1px -1px lavenderblush;
	color: gainsboro;
}



nav {
	border: 2px ridge fuchsia;
	border-radius: 5px;
	padding: 5px;
	background: url(https://mcblog.neocities.org/space1.gif) repeat;
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: lavenderblush;
}
nav a:hover, nav a:focus {
	background: linear-gradient(rebeccapurple,var(--gradientBottom));
}

div.small > img {
	display: block;
	margin: 5px auto;
}


section {
	border: 2px ridge plum;
	border-radius: 5px;
	background: linear-gradient(rebeccapurple,var(--gradientBottom));
	padding: 5px;
}

section.half{
  background: url(https://mcblog.neocities.org/space1.gif) center
}

section.small{
  background: url(https://mcblog.neocities.org/space1.gif) repeat
}

footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
	color: red;
}
footer a { 
	text-decoration: none;
}

#Copyright {
  text-align: center;
  padding: 20px;
  color: red;
  font-size: 14px;
}

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: center;
}
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;
	font-style: bold;
}
a:visited {
	color: blueviolet;
}
#radar {
  position: absolute;
  display: flex;
  width: 582px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 20px #0000008a;
  box-shadow: 0px 10px 20px #0000008a;
  z-index: 2;
}
#statuscafe-header {
    position: absolute;
    top: 8px;
    left: 10px;
}

#statuscafe-header iframe {
    width: 220px;
    height: 60px;
    border: none;
}


