* {
	box-sizing: border-box;
}

/* PALETTE */
:root {
	/* Background Colors: */
	--background-color: #aab4d8;
	--content-bg-color: #f4f5f5;
	--sidebar-bg-color: #f4f5f5;
	--bg-grey: #4f5159;

	/* Text Colors: */
	--text-color: #080809;
	--sidebar-text: #080809;
	--link-color: #aab4d8;
	--link-color-hover: #f4f5f5;
}

html,
body {
	padding: 0;
	margin: 0 auto;
}

html {
	scroll-behavior: smooth;
}

/* Add a gray background color with some padding */
body {
	background-color: var(--background-color);
	overflow-x: hidden;
	width: 100%;
	max-width: 99%;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	color: var(--text-color);
	background-image: linear-gradient(rgba(244, 245, 245, 0.5) 1.1px, transparent 1.1px),
		linear-gradient(to right, rgba(244, 245, 245, 0.5) 1.1px, #aab4d8 1.1px);
	background-size: 22px 22px;
}

html,
body,
a:link,
a:visited {
	cursor: url("/img/default/moon-cursor.png"), auto;
}
a:active, 
a:hover {
	cursor: url("/img/default/moon-phases.gif"), pointer;
}

/* IMAGE SETTING */
img,
picture,
video {
	max-width: 100%;
}

.wrapper {
	margin: 0 auto;
	width: 625px;
	/*width: 75%;*/
	/*height: 400px;*/
}

/* Header/Blog Title */
header {
	width: 100%;
	margin: 0 auto;
}
.header .content {
	font-size: 1.5em;
	text-align: right;
	background: transparent;
	margin: auto auto -2vh;
	width: 90%;
	padding-top: 0.5vh;
	align-items: center;
	justify-content: center;
}
.header-img img {
	height: 50%;
	margin: auto;
	float: left;
	image-rendering: pixelated;
}
.header-title {
	margin-top: -2vh;
}
.header-title a {
	text-decoration: none;
	color: var(--text-b);
}

/*.header > div {
  margin-right: 12px;
 text-align: right;
}*/
.row {
	width: 100%;
	margin-top: -18px;
}
/* Right Column */
.rightcolumn {
	float: left;
	width: 70%;
	margin: 0 auto;
	height: auto;
}

/* Left Column */
.leftcolumn {
	float: left;
	width: 30%;
	height: 300px;
	padding-right: 12px;
	margin: 0 auto;
	align-items: center;
	align-content: space-evenly;
}
.main {
	height: 500px;
	width: 100;
}
.columns {
	display: flex;
	gap: 50%;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 12px 6px;
}
/* TEXT STYLES */
h1,
h2,
h3,
h4 {
	font-family: "Times New Roman", serif;
	color: var(--var-text);
}
.dashed {
	border: 1px dashed var(--bg-grey);
}
ul {
	list-style: none;
	/*list-style-image: url('sqpurple.gif'); */
}
.emph {
	text-decoration: underline wavy var(--link-color);
}

/* UL STYLES */
.style1 {
	list-style-image: url(/img/default/bullet.png);
	list-style-position: inside;
}
.style1 li {
	padding-left: 0.5em;
	text-align: left;
	font-size: .8rem;
	background-color: transparent;
	text-decoration-line: underline;
	text-decoration-style: wavy;
	text-decoration-color: var(--link-color);
}
/* Fake image */
.fakeimg {
	background-color: #aaa;
	width: 100%;
	padding: 20px;
	text-align: center;
	align-content: center;
}
.profile-img {
	background-color: var(--content-bg-color);
	border: 1px dashed black;
	border-radius: 50%; 
	margin-top: -25px;
	margin-left: 70%;
	max-width: 100%;
	padding: 5.5px;
}
.profile-img img {
	margin: 0;
	width: 100%;
}
.over {
	background: #fe82b624;
	-webkit-mask-image: url(https://i.imgur.com/1PjqQS6.png);
	-webkit-mask-size: 200%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}
.content .filler {
	margin-top: 10px;
	margin-bottom: 13px;
	width: 100%;
	height: 100px;
}

/* Add a card effect for articles */
.card {
	padding: 9px;
	margin-top: 15px;
	background-color: var(--content-bg-color);
	box-shadow: 6px 10px 5px rgba(79, 81, 89, 0.5);
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* VISUALS */
.container {
	/*margin: 0 auto;*/
	/*width: 600px;*/
	/*height: 50%;*/
	/*max-height: 250px;*/
	margin-top: 15px;
	width: 100%;
	align-items: center;
	border: 1.5px solid #0c0c0d;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 15px;
	vertical-align: middle;
	/*overflow: hidden;*/
	background-color: var(--content-bg-color);
	box-shadow: 5px 5px 1px rgba(79, 81, 89, 0.5);
}

.dot {
	height: 12px;
	width: 12px;
	background-color: white;
	border-radius: 50%;
	display: inline-block;
	margin-right: 0.5px;
}
.wind {
	padding: 5px;
	margin-bottom: -10px;
	background: var(--text-color);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-align: right;
}
.wind-name > p {
	color: white;
	font-size: 2vh;
	margin: 0 5px;
	float: left;
	text-transform: lowercase;
	letter-spacing: 1.3px;
	font-weight: bold;
}
.wind img {
	height: 2vh;
	width: auto;
	max-width: 100%;
}
.content {
	/* padding: 5px 6px; */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 12px;
	color: var(--text-color);
}
/* .content .scroll {
    font-size: 0.9rem;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    /*height: 250px;*/
/*    margin-left: auto;
    margin-right: 7px;
    overflow-y: scroll;
    width: 100%;
    /* height: 500px; */
/*    height: 300px;
} */
.content .basic {
	font-size: 0.9rem;
	margin: 13px auto auto;
	padding: 0 12px;
	width: 100%;
	height: auto;
	text-align: center;
}
.content .scroll {
	font-size: 0.9rem;
	/* margin: 5px -6px; */
	margin: 10px auto 13px auto;
	overflow-y: scroll;
	width: auto;
	height: 350px;
	padding: 0 12px;
}
.id-scroll {
	overflow-y: scroll;
	margin: -5px auto;
	padding: 10px;
	width: 100%;
	height: 90px;
}
.updates {
	font-size: 0.7rem;
	margin-top: 10px;
	margin-bottom: 13px;
	/*height: 250px;*/
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 100px;
	min-height: 50px;
}
.content .blink {
	margin-top: 10px;
	margin-bottom: 14px;
	/*height: 250px;*/
	margin-left: 5px;
	margin-right: 5px;
	padding: 3px;
	overflow-y: scroll;
	width: 100%;
	height: 40px;
	box-sizing: content-box;
	justify-content: center;
	scroll-behavior: smooth;
}


/*
.content .scroll{
  width: 100%;
  height: 500px;
  margin: 0 auto;
} */

/* LINKS */
.links {
	list-style-type: none;
	padding: 0;
}
.links li {
	border: 1px dashed black;
	margin-bottom: 6px;
	text-align-last: center;
	color: var(--text-color);
	background-color: var(--content-bg-color);
	padding: 2px;
	font-size: 0.9em;
}
.links li a,
.links li a:active {
	text-decoration: none;
	cursor: pointer;
	color: var(--text-color);
}
.links li:hover,
.links li a:hover {
	text-decoration: none;
	cursor: pointer;
	color: var(--sidebar-text);
	padding: 3px;
}

/* NAV */
.container .nav {
	margin: auto 6px;
	
}
.nav-links li a {
	color: black;
	cursor: pointer;
}
.nav li:hover {
	/*letter-spacing: 3px;*/
	padding: 6px;
	color: var(--text-color);
	background-color: var(--content-bg-color);
	transition-timing-function: ease;
	transition-duration: 1s;
	border-left: 9px solid var(--background-color);
	margin-left: 25px;
}
.nav li a:hover,
.nav li a:active {
	color: var(--link-color);
	height: 10px;
}
.nav li a:visited {
	opacity: 0.6;
	color: #672a4e;
}

/* MAIN */
.main {
	height: fit-content;
}
/* SOCIALS */
.bullets {
	list-style-type: circle;
}
.socials li a {
	color: var(--text-color);
	text-decoration: none;
}
.socials li a:hover,
.socials li a:active {
	padding: 6px;
	color: var(--link-color);
	background-color: transparent;
	text-decoration-line: overline underline;
	text-decoration-style: wavy;
}
.socials li a:visited {
	color: var(--bg-grey);
	opacity: 0.6;
}
.socials {
	font-size: small;
	padding: 0;
	margin: 0 -10px;
}

/* WEBRINGS */
.webrings {
	margin: 10px auto;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	height: auto;
	text-align: center;
}

/* STAMPS/BUTTONS/BLINKIES */
.container .stamps {
	margin: 0 auto 6px;
	display: inline-flex;
	gap: 3px;
	width: 100%;
	max-width: 100%;
	height: auto;
	justify-content: space-evenly;
	justify-items: center;
	align-content: center;
	align-items: center;
	flex-direction: row;
	border-bottom: 1.5px dashed var(--bg-grey);
	padding-bottom: 5px;
}
.container .buttons {
	margin-bottom: 13px;
	padding-bottom: 6px;
	border-bottom: 1.5px dashed var(--bg-grey);
	width: 100%;
	align-content: center;
	align-items: center;
	justify-content: space-evenly;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 2.5px 3px;
	flex-direction: row;
}
section h4 {
	font-family: "Courier New", Courier, monospace;
	position: relative;
  	text-transform: uppercase;
  	letter-spacing: 1px;
	font-size: 0.7em;
}
.id-buttons {
	margin: -10px auto;
	display: inline-flex;
	width: 100%;
	gap: auto;
	height: auto;
	justify-content: space-around;
	align-content: space-around;
	align-items: flex-end;
}
.id-socials {
	display: inline-flex;
	margin: 0 auto;
	width: 100%;
	padding-bottom: 6px;
}
.box2 img {
	filter: grayscale(1);
}
.box2 img:hover {
	filter: grayscale(0);
	transition: lineasr 1s;
}
.box {
	margin: 5px;
	display: flex;
	flex-flow: column wrap;
	max-width: 100%;
}
.box2 {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	align-content: space-between;
	gap: 0;
	flex-basis: auto;
}


/* MISC */
::selection {
	color: var(--background-color);
	background: var(--bg-grey);
}
-moz-::selection {
	color: var(--background-color);
	background: var(--bg-grey);
}
table {
	padding: 0;
	margin: 0 auto;
	font-size: 1rem;
	width: 100%;
}
th,
td {
	vertical-align: center;
}
th {
	font-size: 0.8em;
	background: black;
	color: white;
	text-align: left;
	padding: 4.5px;
}
td {
	font-size: 0.9rem;
	border: 1.5px inset grey;
	text-align: center;
	width: 90%;
	font-weight: bold;
}
.moon {
	border: 0;
	background-image: url(/img/default/moon-divider.png);
	height: 32px;
	width: 100%;
	max-width: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: 0;
}
.lunar {
	border: 0;
	background-image: url(/img/default/lunarlace-divider.gif);
	height: 32px;
	width: 100%;
	max-width: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: 0;
}
.data {
	display: inline-block;
	align-items: center;
	justify-content: space-evenly;
}
.title {
	position: relative;
  	text-transform: uppercase;
  	letter-spacing: 1px;
	font-size: 1.2em;
}
.info {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
  	float: left;
	font-variant: all-petite-caps;
	margin-top: -10px;
	margin-right: -5px;
	height: auto;
	width: 68%;
	max-width: 100%;
}
.info li {
	list-style-type: none;
	margin: auto auto 8.5px;
}
.info span {
	border: inset;
	height: 20px;
	text-align: left;
	padding-right: 100%;
	font-variant: none;
}
.intro {
	width: 100%;
	font-size: .8rem;
	margin: 6px auto -5px;
	text-align: justify;
}
.quotes {
	margin: -5px auto 5px;
	width: 100%;
	text-align: center;
}
.quotes i {
	font-size: .8rem;
	color: var(--link-color);
	font-family: 'Times New Roman', Times, serif;
	text-align: center;
	font-style: italic;
	display: block;
}
.quotes i::before {
	content: '❝';
	display: inline-block;
}
.quotes i::after {
	text-align: center;
	content: '❞';
	display: inline-block;
}
.quotes small {
	font-size: .5rem;
}
.subtitle {
	text-align: center;
	margin-top: -1vh;
	margin-bottom: 3px;
	text-transform: uppercase;
  	letter-spacing: 1px;
}
.sub {
	text-align: left;
	font-size: .7rem;
	margin-top: -1vh;
	margin-bottom: 3px;
	text-transform: uppercase;
  	letter-spacing: 1px;
}
.listing {
	width: 100%;
	display: inline-flex;
	justify-content: space-around;
	gap: 3.5px;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: left;
}
.list {
	font-size: .7rem;
	width: 50%;
	margin: auto;
	padding: 12px 5px 5px 12px;
	border: 1.5px dotted var(--sidebar-text);
	border-radius: 5px;	
	flex-wrap: wrap;
	justify-content: space-around;
}
.list li {
	display: inline-block;
	word-break: break-word;
}
.list li {
	list-style-type: none;
}

.list li:not(:last-child)::after {
  content: '☆';
  color: var(--link-color);
  font-weight: bold;
  padding-left: 0.5em;
  padding-right: -0.5em;
}

/* ACCORDION */
/* DETAILS */
.fav-list {
	width: 100%;
	margin: 5px auto -3.5px;
	justify-content: center;
}
details {
  font-size: .8em;
  font-family: 'Courier New', Courier, monospace;
  border: 1px solid #4f0e0e;
  padding: 0;
  margin-bottom: 1.5px;
  background-color: var(--nav-bg);
  width: 100%;
  text-align: left;
}
details > p {
  padding: 0 15px;
}
details:first-of-type summary::marker,
:is(::-webkit-details-marker) {
  content: "★"; 
  color: var(--nav-bg);
  font-family: serif;
}
details:first-of-type summary::hover::marker {
  content: "★";
  color: var(--nav-bg);
}
details[open]:first-of-type summary::marker {
  content: "★";
}
details[open]:first-of-type summary:hover::marker,
details[open]:first-of-type summary:active::marker {
  content: "★";
  color: var(--nav-bg);
}
details:nth-child(1n + 1) summary::marker {
  content: "★";
}
*/ details:last-of-type summary {
  list-style: none;
  &::before {
    content: "★";
    color: var(--nav-bg);
    font-weight: bold;
    padding: 0;
    margin-right: 5px;
  }
  [open] &::before,
  [open] &::before:active {
    content: "★";
    margin-right: 5px;
  }
}
details:last-of-type summary::-webkit-details-marker {
  display: none;
}
summary {
  color: var(--content-bg-color);
  background-color: var(--sidebar-text);
  border: 1px solid var(--sidebar-text);
  cursor: pointer;
  padding: 3px;
  margin: 0;
  width: 100%;
  text-align: left;
  font-family:'Courier New', Courier, monospace;
  outline: none;
  font-size: .9rem;
  line-height: .5rem;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
}
summary:hover,
summary:active {
  background-color: var(--content-bg-color);
  color: var(--text-color);
  transition-timing-function: ease;
  transition-duration: 0.5s;
}
.fav-list {
	font-size: 0.8rem;
}
ul.fav {
	list-style: none;
	margin-left: -15px;
}
.fav li {
	list-style-image: url(/img/default/bullet.png);
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--sidebar-text);
	border: groove 2.4px var(--content-bg-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--link-color);
	opacity: 0.5;
}
::-webkit-scrollbar-corner {
	border-radius: 10px;
}
/* Footer */
footer {
	text-align: right;
	font-size: 0.7em;
	color: var(--content-bg-color);
	height: 5vh;
	padding: 5px;
	margin: 5px auto;
	font-variant: small-caps;
}
footer a,
footer a:active {
	color: var(--bg-grey);
	text-decoration: none;
}

footer a:hover {
	color: black;
	text-decoration-line: underline;
	text-decoration-style: wavy;
	font-weight: bold;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
/*(max-width: 800px)*/
@media screen and (width <= 450px) {
	body {
		margin: auto;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: space-evenly;
		overflow-y: scroll;
		overflow-x: hidden;
		padding: 2.5vh;
		width: 100%;
		height: auto;
	}
	.mobileHide {
		margin-bottom: inherit;
		display: none;
	}
	.mobileShow {
		display: inline;
		margin-bottom: inherit;
	}
	img,
	picture,
	video {
		max-width: 100%;
	}
	.wrapper {
		margin: 0 auto;
		padding: 0;
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
	}
	.row {
		margin: 0;
		display: grid;
		flex-wrap: wrap;
		row-gap: auto;
		width: 100%;
	}
	.columns {
		width: 100%;
		height: 100%;
		margin: auto 0;
		gap: 25%;
		padding: 0.3em;
	}
	.leftcolumn,
	.rightcolumn {
		width: 100%;
		height: 100%;
		/*padding: 0; */
		padding: 0;
		margin: 0 auto;
	}
	header {
		width: 100%;
		margin: 0 auto -2vh;
		order: 1;
	}
	header .container {
		margin: 0 auto;
		height: auto;
		width: 100%;
		justify-content: center;
		justify-self: center;
		align-items: center;
	}
	.header .content {
		margin-bottom: 0.3vh;
		width: 90%;
	}
	.header-title {
		margin-right: 3%;
	}
	.header-img img {
		height: 100%;
		width: 100%;
		margin-left: 5%;
	}
	.rightcolumn {
		order: 3;
	}
	.leftcolumn {
		order: 2;
	}
	.main {
		width: 100%;
		margin: auto;
	}
	.card,
	.container {
		margin-bottom: auto;
		flex-wrap: wrap;
		width: 100%;
	}
	.content {
		width: auto;
		margin: auto;
	}
	table {
		padding: 0;
		width: 100%;
	}
	td,
	th {
		padding: 4px 20px;
		flex-wrap: wrap;
	}
	.scroll {
		height: 2vh;
		max-width: 100%;
	}
	.profile-img {
		width: 30%;
		margin-top: -1vh;
	}
	.data {
		width: auto;
		display: inline-block;
		margin-bottom: 6px;
	}
	.intro {
		width: auto;
		margin: -6px auto;
	}
	.id-scroll {
		height: 13vh;
		width: 100%;
	}
	.container .stamps {
		width: 100%;
		height: auto;
		margin: 10px auto;
		align-items: center;
		align-content: center;
		justify-content: space-evenly;
		justify-items: stretch;
		grid-template-columns: 1fr 1fr;
		display: grid;
		gap: 5px;
		padding: 6px;
	}
	.stamps img {
		image-rendering: pixelated;
		image-rendering: -moz-crisp-edges;
		image-rendering: crisp-edges;
	}
	.blink img {
		width: 95%;
		max-height: auto;
	}
	.content .blink {
		height: 40px;
	}
	footer > div {
		width: 100%;
		height: 0.5vh;
		text-align: left;
		margin: -5px auto 12px;
	}
	footer {
		order: 4;
	}
}
