/* style sheet!! */

:root {
	--background: #f2e2ff;   /* purple bg */
	--textandlines: #ff5572; /* pink */
	--textboxbg: #ffe287;    /* yellow */
	--headeraccent: #ffa36c;  /* orange */
	--filter: invert(46%) sepia(55%) saturate(1682%) hue-rotate(318deg) brightness(101%) contrast(109%);

}

.theme-dark {
  --background: #072420;   /* super darrk teal */
	--textandlines: #00c7ab; /* turquoise */
	--textboxbg: #15685c;    /* teal */
	--headeraccent: #ffffff;  /* white */
	--filter: brightness(0) saturate(100%) invert(50%) sepia(94%) saturate(444%) hue-rotate(123deg) brightness(100%) contrast(101%);

}




.unstyled-button {
  border: none;
  padding: 0;
  background: none;
}

.svgcolour {
	filter: var(--filter);
}

.pixel {
  image-rendering: pixelated;
}

body {
  background-color: var(--background);
  color: var(--textandlines);
  font-family: "Courier New", monospace;
}

hr {
  color: var(--textandlines);
  background-color:var(--textandlines);
  height: 2px;
  border-width: 0px;
  padding-bottom: 1em;
}

table, th, td {
  border-spacing: 0px;
  padding-left: 5px;
}

.image-row {
  display: flex;
  justify-content: space-between; /* this will add equal space between each image */
}

#flex {
    display: flex;
    max-width:1800px;
	max-height:800px;
}



.windowcontainertop {
  background-color: var(--headeraccent);
  color: var(--textandlines);
  padding: 0px;
  text-align: right;
  vertical-align: top;
  padding-top: 0px;
  width: 950px;
  height: 22px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--textandlines);
}

.windowcontainermain {
  background-color: var(--textboxbg);
  color: var(--textandlines);
  text-align: left;
  vertical-align: top;
  width: 950px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--textandlines);
  
}

.sidecontainermain {
  background-color: var(--textboxbg);
  color: var(--textandlines);
  text-align: left;
  vertical-align: top;
  padding: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--textandlines);
  width: 30%;
  margin-left:var(5px);
}

div.shrineimg {
  top: 0%;
  left: 0%;
  transition: grayscale .5s ease-in-out;
  -webkit-transition: grayscale;
  max-width:259px;
  max-height:259px;
}

div.shrineimg:hover {
  filter: grayscale(50%);
  -webkit-filter: grayscale(50%);
}


.righttop {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: right;
}


.pagelink {
  display: block;
  background-color: var(--textandlines);
  text-align: center;
  color: var(--textboxbg);
  width: 100%;
  height: 30px;
  border-radius: 25px;
}

.selectedpage {
  background-color: var(--headeraccent);
  text-align: center;
  color: var(--textboxbg);
  width: 100%;
  height:30px;
  border-radius: 25px;
}

.pagelinktext {
  color:var(--textboxbg);
  font-size:18px;
}

.icons {
  display: block;
  text-align: center;
  color: var(--textboxbg);
  width: 100%;
  height: 150px;
  border-radius: 25px;
  object-fit: contain;
}

.svgicons {
	filter: var(--filter);
	height: 100%;
}