/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* CINNAVERSE STYLING */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
* {
  box-sizing: border-box;
}

html {
	scrollbar-width: thin;
	scrollbar-color: #f8a624 black;
}

body {
  font-family: Calibri, Helvetica, sans-serif;
	background-image: url('assets/backgrounds/kirb_bg.png');
	background-size: cover;
	background-attachment: fixed;
  scrollbar-color: pink white;
  scrollbar-width: thin;
  cursor: url('assets/starrotate.gif'), auto;
  cursor: url('assets/starrotate.gif'), pointer;
}


h3 {
    font-family: "Sysfont";
	font-size: 35px;
    color: #DB4186;
	padding: 3px;
	border-bottom: 1px solid white;
}
h2 {
  font-family: "DOS";
  font-size: 20px;
  letter-spacing: 2px;
  border-bottom: 1px solid gray;
  color: white;
  max-width: 300px;
  padding: 5px;
}

h2.subtitle {
	font-family: "DOS";
	font-size: 30px;
	background: linear-gradient(25deg, rgb(76,17,103) 0%, rgb(13,1,63) 100%);
	max-width: 800px;
}

h2.galax {
	font-family: Galax;
	font-size: 25px;
	border-bottom: none;
	text-align: center;
}


h4 {
	font-family: "IBM";
	font-size: 30px;
	color: white;
	border-bottom: 1px solid white;
}

h5 {
	font-family: "Sysfont";
	font-size: 60px;
	color: white;
}

hr.horiline {
	border: 2px dashed #f6bb0b;
}

@font-face {
  font-family: 'Sysfont';
  src: url('assets/fonts/sysfont.woff2') format('woff2'),
  url('assets/fonts/sysfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DOS';
  src: url('assets/fonts/Web437_DOS-V_TWN16.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IBM';
  src: url('assets/fonts/Web437_IBM_Model3x_Alt4.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Windows';
  src: url('assets/fonts/w95fa.woff2') format('woff2'),
  url('assets/fonts/w95fa.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Etolian';
  src: url('fonts/Etolian-v1.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Galax';
  src: url('fonts/Galax-v1.woff2') format('woff2'),
  url('fonts/Galax-v1.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Zhamor';
  src: url('fonts/Zhamor-v1.woff') format('woff'),
  url('fonts/Zhamor-v1.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


p {
  color: white;
  font-family: 'IBM';
  font-size: 18px;
}

p.etolian {
	font-size: 30px;
	font-family: 'Etolian';
	writing-mode: vertical-rl
}

p.galax {
	font-size: 20px;
	font-family: 'Galax';
}

h2.galax {
	font-family: 'Galax';
	font-size: 40px;
	max-width: 380px;
}

a {
	font-family: 'Sysfont';
	color: #f6bb0b;
}

th {
	color: white;
	background-color: #4903c8;
}
	
td {
	color: white;
}

td.zhamor {
	font-family: 'Zhamor';
}

td.galax {
	font-family: 'Galax';
}

li {
	font-family: 'IBM';
	color: white;
}

ul {
	font-family: 'IBM';
}

tr {
	font-family: 'IBM';
}

a.sitemap {
	font-family: 'IBM';
}

.sidebarcontainer {
  padding: 3px;
  border: 2px;
}

#cinnaverse_nav{
}

h3.resource {
	font-family: Sysfont;
	font-size: 35px;
	background: linear-gradient(25deg, rgb(74,27,190) 0%, rgb(13,1,63) 100%);
	border-radius: 5px;
	color: #f6bb0b;
}

/* Style the header */
.header {
  list-style-type: none;
  padding: 10px;
  text-align: center;
  font-size: 35px;
  border-radius: 10px;
  border: 5px #F566A6;
  font-family: "Calibri";
  justify-content: center;
  display: flex;
  margin-right: 150px;
  margin-left: 150px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

/* Create three unequal columns that sits next to each other */
.column {
  padding: 10px;
  border: 5px solid #de9e00;
  border-style: double;
  margin: 0;
  background-color: rgb(13,1,63,0.95);
  border-radius: 1.5em 0.175em;
  text-align: left;
  max-width: 1000px;
  max-height: auto;
  box-shadow: -15px 15px 10px rgba(13, 9, 10, 0.5);
}

/* Left and right column */
.column.side {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 0.15;
   border-radius: 5px;
}

/* Middle column */
.column.middle {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 20px;
}

/* Style the footer */
.footer {
  padding: 5px;
  text-align: center;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  
  .footer {
	  width: auto;
  }
}
div.transbox {
  margin: 30px;
  background-color: black;
  border: 3px dashed #f6bb0b;
}

div.transbox p {
  margin: 2%;
  font-family: "Sysfont";
  color: #f6bb0b;
}
div.background {
  border: 2px solid black;
}
.button1 {
  background-color: black;
  max-width: 200px;
  margin: 15px;
  border-radius: 5px;
  font-family: "Sysfont";
  font-size: 17px;
  font-weight: bold;
  color: white;
  padding: 10px 10px;
  border: 2px solid black;
  display: inline;
  margin-bottom: 10px;
  flex-wrap: initial;
}
.overflowcontainer { /* HOMEPAGE SCROLLBAR */
  overflow: auto;
  padding: 5px;
  border-radius: 5px;
  height: 250px;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #DB4186 black;
}

.outerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: stretch;
}

.innerbox {
  background: #4a1bbe;
  padding: 15px 5px;
  margin: 5px;
  width: 170px;
  border-radius: 10px;
}

.grid {
  display: grid;
  gap: 5px;
  grid-template-columns: auto auto auto;
  padding: 10px;
  flex-wrap: wrap;
}

.grid-item {
  padding: 20px;
  text-align: center;
  flex-wrap: wrap;
}

.galaxybtn {
  background-color: black;
  max-width: 200px;
  margin: 10px;
  border-radius: 0px 0px 0px 0px;
  border-style: double;
  font-size: 17px;
  font-weight: bold;
  color: #1B0341;
  padding: 10px 10px;
  border: 2px dashed #D13796;
  display: block;
  flex-wrap: flex;
  margin-bottom: 10px;
  box-shadow: 5px 5px #18033E;
}

.galaxybtn:hover{
  background-color: #9d0355;
}

.galaxydiv {
  border-radius: 0px 100px 100px 100px;
  font-family: "Calibri";
  background-color: #FF9EC7;
  color: #18033E;
  padding: 20px;
  border: 2px solid #D13796;
  margin-left: 200px;
  margin-right: 200px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.planetbutton {
  border-radius: 30px;
  background-color: white;
  color: pink;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  max-width: 100px;
  text-align: center;
  display: inline;
}
.invisbox {
  max-width: 1500px;
  text-align: center;
}
.seethroughbox {
  border: 2px pink;
  color: black;
  opacity: 0.85;
  padding: 2px;
}

.contain2 {
	width: 100px;
	height: 300px;
}

.animate {
	width: 200px;
	height: 200px;
	margin: auto;
	background-image: url('assets/stargif.gif');
	background-size: cover;
	animation: 3s spin ease-in-out;
	animation-direction: alternate;
	animation-iteration-count: infinite; 
	transform: translateY(50px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* GALAXY PAGE CONTAINERS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.box {
  border-radius: 1.5em 0.175em;
  background: rgb(10,5,0,0.85);
  color: white;
  border: 5px solid #de9e00;
  border-style: double;
  padding: 15px 10px;
  max-width: 1000px;
  margin: 0;
}
 
.box.beta { /* BETA GALAXY CONTAINER */
  border-radius: 1.5em 0.175em;
  background: rgb(10,5,0,0.85);
  color: white;
  border: 5px solid #aae6ff;
  border-style: double;
  padding: 15px 10px;
  max-width: 1000px;
  margin: 0;
 }
 
.box.kappa { /* KAPPA GALAXY CONTAINER */
  border-radius: 1.5em 0.175em;
  background: rgb(10,5,0,0.85);
  color: white;
  border: 5px solid #2d8452;
  border-style: double;
  padding: 15px 10px;
  max-width: 1000px;
  margin: 0;
 }
 
.box.ceros { /* CEROS GALAXY CONTAINER */
  border-radius: 1.5em 0.175em;
  background: rgb(10,5,0,0.85);
  color: white;
  border: 5px solid #2d5684;
  border-style: double;
  padding: 15px 10px;
  max-width: 1000px;
  margin: 0;
 }
 
.box.orino { /* ORINO GALAXY CONTAINER */
  border-radius: 1.5em 0.175em;
  background: rgb(10,5,0,0.85);
  color: white;
  border: 5px solid #d49a40;
  border-style: double;
  padding: 15px 10px;
  max-width: 1000px;
  margin: 0;
 }
.navbox {
	width: 310px;
	float: left;
	position: fixed;
	left: 100px;
	top: 100px;
	padding: 16px;
	background-color: blue;
	background: rgb(10,5,0,0.85);
	border: 1px solid #aae6ff;
}

.galaxyflex {
	width: auto;
	height: auto;
	display: flex;
}
.galaxyinfo {
	float: left;
	padding: 5px;
	background: black;
	border: 1px solid white;
	margin: auto;
	position: relative;
	word-wrap: break word;
	max-width: 800px; 
}

.galaxyheader {
	font-family: "Sysfont";
	color: black;
	font-size: 25px;
	background-color: white;
	margin-bottom: 7px;
	padding: 2px;
}

h2.galaxyhead { /* BETA GALAXY HEADER */
	font-family: "Sysfont";
	color: black;
	font-size: 35px;
	background-color: #aae6ff;
	padding: 2px;
}

h2.galaxyhead2 { /* KAPPA GALAXY HEADER */
	font-family: "Sysfont";
	color: black;
	font-size: 35px;
	background-color: #CBF486;
	padding: 2px;
}

h2.galaxyhead3 { /* ALTA GALAXY HEADER */
	font-family: "Sysfont";
	color: black;
	font-size: 35px;
	background-color: #E93988;
	padding: 2px;
}

h2.galaxyhead4 { /* CEROS GALAXY HEADER */
	font-family: "Sysfont";
	color: black;
	font-size: 35px;
	background-color: #6772E1;
	padding: 2px;
}

h2.galaxyhead5 { /* ORINO GALAXY HEADER */
	font-family: "Sysfont";
	color: black;
	font-size: 35px;
	background-color: #F2C149;
	padding: 2px;
}

.border {
	max-width: 600px;
	margin: 10px auto;
	border: 15px solid #260455;
	background-color: #11081d;
	border-image-outset: 1px;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-image: url('assets/border.png') 19 stretch;
	border-image-outset: 1px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* CRT FILTER STYLING */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* SCREEN-DOOR FX */
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  z-index: 99;
  pointer-events: none
}

/* COLOR BLEED */
body {
  text-shadow:
  2px 0 1px rgba(0, 30, 255, 0.1),
  -2px 0 1px rgba(255, 0, 80, 0.1),
  0 0 1px
}
img {
  filter:
  drop-shadow(4px 0 2px rgba(0, 30, 255, 0.1))
  drop-shadow(-4px 0 2px rgba(255, 0, 80, 0.1))
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FLEXBOX */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.item {
	border: none;
	margin-right: 10px;
	margin-bottom: 10px;
}
.wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2;
}

.headeritem {
	list-style-type: none;
	padding: 10px;
	text-align: center;
	font-size: 25px;
	border-radius: 10px;
	border: 5px #F566A6;
	font-family: "Calibri";
	justify-content: center;
	display: flex;
	margin-right: 10px;
	margin-left: 10px;
}
#navbar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.headeritem:hover{
  background-color: #9d0355;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* PLANET PAGES WOO */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.flex-planet {
	display: flex;
	justify-content: center;
}

.flex.azmorfa {
	background-image: url('assets/backgrounds/kssubg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.mariine {
	background-image: url('assets/backgrounds/kssubg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.gouloon {
	background-image: url('assets/backgrounds/kssubg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.iluna {
	background-image: url('assets/backgrounds/ksqsqbg4.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.prestoria {
	background-image: url('assets/backgrounds/katambg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.techchia {
	background-image: url('assets/backgrounds/kmabg1.png');
	background-size: contain;
	background-attachment: fixed;
}


.flex.froola {
	background-image: url('assets/backgrounds/kmabg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.bugroo {
	background-image: url('assets/backgrounds/pmbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.aaleni {
	background-image: url('assets/backgrounds/ksqsqbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.irapea {
	background-image: url('assets/backgrounds/katambg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.osmos {
	background-image: url('assets/backgrounds/ksqsqbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.primavera {
	background-image: url('assets/backgrounds/crobbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.uchiffe {
	background-image: url('assets/backgrounds/kssubg6.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.medevla {
	background-image: url('assets/backgrounds/ksqsqbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.neogreo {
	background-image: url('assets/backgrounds/ksqsqbg5.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.dreamare {
	background-image: url('assets/backgrounds/kssubg4.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.eyerie {
	background-image: url('assets/backgrounds/kirbystarbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.etolia {
	background-image: url('assets/backgrounds/kirbystarbg4.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.triama2 {
	background-image: url('assets/backgrounds/kirb_bg.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.telepas {
	background-image: url('assets/backgrounds/kmabg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.gemma {
	background-image: url('assets/backgrounds/ksqsqbg8.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.lavallon {
	background-image: url('assets/backgrounds/ksqsqbg9.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.lacel {
	background-image: url('assets/backgrounds/crobbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.patisse {
	background-image: url('assets/backgrounds/crobbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.temponia {
	background-image: url('assets/backgrounds/crobbg4.png');
	background-size: cover;
	background-attachment: fixed;
}

.flex.indra {
	background-image: url('assets/backgrounds/crobbg5.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.terraglow {
	background-image: url('assets/backgrounds/crobbg6.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.aviary {
	background-image: url('assets/backgrounds/ristarbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.termina {
	background-image: url('assets/backgrounds/ristarbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.ubo {
	background-image: url('assets/backgrounds/crobbg7.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.loba {
	background-image: url('assets/backgrounds/crobbg8.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex.ttleon {
	background-image: url('assets/backgrounds/ristarbg4.png');
	background-size: contain;
	background-attachment: fixed;
}


.planet {
  padding: 15px;
  /* border: 5px solid #E93988; */
  border: none;
  border-style: double;
  margin: auto;
  background-color: rgb(13,1,63,0.85);
  border-radius: 5px;
  text-align: left;
  /* width: 900px; */
  width: 100%;
  height: auto;
}

.info {
	border: 5px solid #6b29fb;
	border-style: double;
	width: 350px;
	max-height: 990px;
	float: right;
	padding: 10px;
	margin: 10px;
}

.pic {
	border: none;
	max-width: 330px;
	max-height: 300px;
}

.infoheadsm {
    font-family: "Windows";
	font-size: 30px;
    background-color: #DB4186;
    border-radius: 100px 100px 100px 100px;
    color: white;
	padding: 5px;
	margin: 5px;
	width: 460px;
	display: flex;
}

.infoheadlg {
    font-family: "Sysfont";
	font-size: 30px;
	background: linear-gradient(0deg, rgb(100,0,168) 0%, rgb(56,2,93) 100%);
    border-radius: 20px 20px 20px 20px;
    color: white;
	padding: 7px;
	margin: 5px;
	display: flex;
}

.planet-title {
	font-family: 'Sysfont';
	font-size: 40px;
	color: white;
	border-bottom: 1px solid white;
	/*background: linear-gradient(25deg, rgb(219,65,134) 0%, rgb(13,1,63) 100%); */
	margin-bottom: 35px;
}

th {
	padding: 2px;
	border: 1px solid white;
	border-color: transparent white transparent transparent;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SPECIES PAGES YEAAAA */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.flex-species {
	display: flex;
	justify-content: center;
}

.container-species {
  padding: 15px;
  margin: 0;
  background-color: rgb(13,1,63,0.85);
  border-radius: 5px;
  text-align: left;
  width: 100%;
  max-height: 3500px;
}

.header-species {
	border: none;
	padding: 15px;
	text-align: left;
	max-width: 150px;
	margin: auto;
	margin-bottom: 15px;
	color: white;
	font-family: 'Sysfont';
	font-size: 50px;
	/*transform: rotate(-3deg);*/
	background-color: orange;
}

h2.species {
	color: white;
	font-family: 'Sysfont';
	font-size: 60px;
	/*transform: rotate(-5deg);*/
	margin: auto;
	max-width: 290px;
	border-bottom: none;
	margin-top: -45px;
}

.pic-species {
	padding: 10px;
	float: left;
	margin: auto;
	height: auto;
	width: 500px;
	margin: 5px;
}

.flex-species-pic {
	display: flex;
	margin: auto;
}

.info-species {
	border: none;
	width: 420px;
	height: auto;
	float: right;
	padding: 10px;
	margin: 10px;
}

@media only screen and (max-width: 790px) {
	.container-species {
		width: auto;
	}
	.flex-species.pic {
		flex-direction: column;
		width: auto;
	}
	.infoheadlg {
		width: auto;
	}
	.flex-species {
		flex-direction: column;
	}
	.pic-species {
		margin: auto;
		width: 100%;
		display: block;
	}
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BACKGROUNDS FOR SPECIES PAGES */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


.flex-species.telepas {
	background-image: url('../backgrounds/kmabg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.azmorfa {
	background-image: url('assets/backgrounds/kssubg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.mariine {
	background-image: url('assets/backgrounds/kssubg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.gouloon {
	background-image: url('../assets/backgrounds/kssubg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.iluna {
	background-image: url('assets/backgrounds/ksqsqbg4.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.prestoria {
	background-image: url('assets/backgrounds/katambg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.techchia {
	background-image: url('assets/backgrounds/kmabg1.png');
	background-size: contain;
	background-attachment: fixed;
}


.flex-species.froola {
	background-image: url('assets/backgrounds/kmabg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.bugroo {
	background-image: url('assets/backgrounds/pmbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.aaleni {
	background-image: url('assets/backgrounds/ksqsqbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.irapea {
	background-image: url('assets/backgrounds/katambg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.osmos {
	background-image: url('assets/backgrounds/ksqsqbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.primavera {
	background-image: url('assets/backgrounds/crobbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.uchiffe {
	background-image: url('assets/backgrounds/kssubg6.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.medevla {
	background-image: url('assets/backgrounds/ksqsqbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.neogreo {
	background-image: url('assets/backgrounds/ksqsqbg5.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.dreamare {
	background-image: url('assets/backgrounds/crobbg09.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.eyerie {
	background-image: url('assets/backgrounds/kirbystarbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.etolia {
	background-image: url('assets/backgrounds/kirbystarbg4.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.triama2 {
	background-image: url('assets/backgrounds/kirb_bg.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.telepas {
	background-image: url('assets/backgrounds/kmabg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.gemma {
	background-image: url('assets/backgrounds/ksqsqbg8.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.lavallon {
	background-image: url('assets/backgrounds/ksqsqbg9.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.lacel {
	background-image: url('assets/backgrounds/crobbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.patisse {
	background-image: url('assets/backgrounds/crobbg3.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.temponia {
	background-image: url('assets/backgrounds/crobbg4.png');
	background-size: cover;
	background-attachment: fixed;
}

.flex-species.indra {
	background-image: url('assets/backgrounds/crobbg5.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.terraglow {
	background-image: url('assets/backgrounds/crobbg6.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.aviary {
	background-image: url('assets/backgrounds/ristarbg1.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.termina {
	background-image: url('assets/backgrounds/ristarbg2.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.ubo {
	background-image: url('assets/backgrounds/crobbg7.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.loba {
	background-image: url('assets/backgrounds/crobbg8.png');
	background-size: contain;
	background-attachment: fixed;
}

.flex-species.ttleon {
	background-image: url('assets/backgrounds/ristarbg4.png');
	background-size: contain;
	background-attachment: fixed;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LANGUAGE SIDEBAR */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.lang-sidebar {
	border: 5px double #de9e00;
	padding: 10px;
	height: auto;
	margin-right: 15px;
	width: 250px;
	border-radius: 1.5em 0.175em;
	background-color: rgb(13,1,63,0.95);
}

.lang-button {
	border: 1px solid white;
	padding: 3px;
	background-color: pink;
	margin: 5px;
	width: 80px;
}

.lang-jump {
	background-color: pink;
	padding: 5px;
	width: 115px;
	margin-right: 15px;
	text-align: center;
}
.flex-lang {
	display: flex;
	flex-wrap: wrap;
}

#pronunciation {
}

#alphabet {
}

#pronouns {
}

#verbs {
}

#questions {
}

#dictionary {
}

#examples {
}

#dev {
}

a.lang {
	color: #3c1e86;
	text-decoration: none;
}

h1.lang {
	font-size: 30px;
	color: white;
	font-family: 'Sysfont';
	background-image: linear-gradient(25deg, rgb(119,3,237) 0%, rgb(13,1,63) 100%);
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LANGUAGE TABLES */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* This is for the table just under the name of the language on language pages! Has info about the name, the creation date, and any related articles on the site! */

table.lang {
	border: 1px solid white;
	padding: 5px;
	
}

tr.lang, td.lang {
	border: 1px solid white;
	color: black;
	padding: 5px;
}

th.lang {
	background-color: #936aff;
	color: black;
}

td.lang {
	background-color: #b09ae4;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 404 PAGE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.fourohfour {
	background-color: black;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* NEW LAYOUT!! */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.container-flex {
	display: flex;
	justify-content: center;
}

.header-test {
	width: 1300px;
	height: 200px;
	background-image: url('assets/header.png');
	margin: auto;
}

.sidebar-test {
	width: 230px;
	border: 5px solid #de9e00;
	border-style: double;
	background-color: #5903c1;
}

.main-test {
	width: 1070px;
	border: 5px solid #de9e00;
	border-style: double;
	background-color: rgb(13,1,63,0.85);
	padding: 10px;
}

.main-test, .sidebar-test {
	height: 100%;
}

.footer-test {
	width: 1300px;
	border: 1px solid white;
	height: auto;
	margin: auto;
	padding: 15px;
}

.button-test {
	font-family: 'DOS';
	height: 60px;
	width: 100%;
	border: 3px solid #a542f4;
	background-image: linear-gradient(rgb(180,92,250)10%, rgb(81,13,186)50%, rgb(37,11,178,50%)40%);
	border-radius: 15px;
	margin-bottom: 7px;
	margin-top: 7px;
	text-align: center;
}

.button-test:hover {
	border-color: yellow;
}

.sidebar-links {
	margin: 0;
	/* width: 100%; 
	margin-left: 7px; */
	display: none;
	background-color: rgb(13,1,63,0.25);
	
}

a.sidebar {
	font-family: 'Windows';
	font-size: 20px;
	text-decoration: none;
}

a.sidebar:hover {
	color: white;
}

@media only screen and (max-width: 790px) {
	.header-test {
		width: 100%;
		background-position: center;
		background-size: 100%;
		margin-bottom: 10px;
		background-image: url('assets/header.png');
		height: 60px;
	}
	.container-flex {
		flex-direction: column;
	}
	.main-test {
		width: 100%;
		margin-top: 15px;
	}
	.sidebar-test, .button-test {
		width: 100%;
	}
	.flex-species-pic {
		flex-direction: column;
	}
	.info-species {
		width: 100%;
	}
}

[data-theme="Cloudy"] {
}