html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of CSS Reset */

header {
  border: 0.1vw rgb(18, 216, 124) solid;
  background-color: #131313;
  display: grid;
  position: fixed;
  top: 0;
  grid-template-columns: 5vw 28vw 66.5vw;
  height: 10vh;
  width: 99.81vw;
  z-index: 999;
  transition: border 1s ease;
  pointer-events: auto; 
}

html {
  background-color: #2e2e2e;
}

body {
  background-color: #2e2e2e;
  overflow-x: hidden;
  z-index: 998;
  margin-top: 10vh;
  opacity: 0;
  transition: opacity 1s ease;
}

body::-webkit-scrollbar {
  display: none;
}

#LogoR {
  background-image: url(Images/Logos/ApeironLogoNoB.png);
  filter: hue-rotate(200deg) brightness(150%) contrast(95%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 10vh;
  aspect-ratio: 1 / 1;
  grid-column: 1/2;
  transition: filter 1s ease;
}

#TitleR {
  color: aliceblue;
  font-size: 4vh;
  text-align: center;
  line-height: 10vh;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#NavR {
  grid-column: 3/4;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 3.5vh 2vw;
  height: fit-content;
  line-height: 3vh;
  font-size: 2.5vh;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#NavSR {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 2vh 2vw;
  height: fit-content;
  line-height: 3vh;
  font-size: 2.5vh;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.headtext {
  text-decoration: none;
  position: relative;
  color: aliceblue;
  transition: color 0.3s;
  vertical-align: middle;
  opacity: 0.85;
  height: fit-content;
  transition: opacity ease 1s;
}

.linkLine {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25vh;
  height: 0.25vh;
  background: linear-gradient(to right, rgba(0,0,0,0), rgb(18, 216, 124), rgba(0, 0, 0, 0));
  transform: scaleX(0);
  transform-origin: 50% 100%;
  transition: transform 0.55s ease;
  z-index: -1;
}

.subtext .linkLine {
  bottom: .83vh;
}

.headtext:hover {
  opacity: 1;
  cursor: pointer;
}

.headtext:hover, .subtext:hover {
  .linkLine {
    transform: scaleX(1);
  }
}

main {
  position: relative;
  width: 80vw;
  margin: 0 9.75vw;
  background-color: #292929;
  text-align: center;
  padding-top: 0.5vh;
  pointer-events: auto; 
}

#settingsForm {
  width: 40vw;
  margin: 0 30vw;
  padding-top: 3em;
  height: calc(100vh);
  text-align: center;
  background-color: #1F1F1F;
  color: aliceblue;
}

footer {
  position: relative;
  bottom: 0;
  height: 10vh;
  width: 60vw;
  margin: 0 10vw;
  color: aliceblue;
  margin-top: 10vh;
}

footer p {
  font-size: 2vh;
  padding: 4vh 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: auto;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

footer hr {
  width: 60vw;
  border: none;
  height: 0.2vh;
  margin-bottom: 0;
  background: linear-gradient(to right, rgb(0,0,0,0), rgb(18, 216, 124), rgb(0, 0, 0, 0));
}

.campaignModule {
  position: relative;
  margin: 6vh 10vw;
  margin-bottom: 4vh;
  display: flex;
  justify-content: flex-start;
  border: 2px solid rgb(18, 216, 124, 0.25);
  color: aliceblue;
  width: 60vw;
  height: 35vh;
  z-index: -1;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 2vw;
}

h2 {
  padding: 1vh 0;
  font-size: 2.2vw;
}

h4 {
  padding: 1vh 0;
  font-size: 2.2vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: aliceblue;
}

h5 {
  padding: 1vh 0;
  font-size: 1.1vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: aliceblue;
}

h6 {
  padding: 0.8vh 0;
  font-size: 1vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: aliceblue;
}

h3 {
  font-size: 1.3vw;
}

.campHR {
  width: 15vw;
  border: none;
  height: 0.15vh;
  background: linear-gradient(to right, rgb(0,0,0,0), rgb(18, 216, 124), rgb(0, 0, 0, 0));
  margin-bottom: 1vh;
  margin-top: 1vh;
  transition: ease;
  transition-duration: 800ms;
}

#candelva {
  background-image: url(Images/CandelvaBlur.jpg);
}

#amireath {
  background-image: url(Images/AmireathBlur.jpg);
}

#apocalypse {
  background-image: url(Images/Ben.jpg);
}

.campTextHold {
  justify-self: flex-start;
  width: 22vw;
  z-index: 3;
  background-color: #1F1F1F;
  transition: ease-in;
  transition-duration: 500ms;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 1vh;
  overflow: hidden;
}

.campText {
  opacity: 1;
  position: relative;
  transition: opacity 2s ease, transform 500ms ease-in;
  padding-top: 1vh;
  padding-bottom: 1vh;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 1vh 1vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.campTextAfter {
  position: absolute;
  text-indent: 20px;
  transform: translateX(-4vw);
  width: 20vw;
  height: 27vh;
  line-height: 3.2vh;
  opacity: 0;
  transition: opacity 100ms ease, transform 500ms ease-in;
  transition: 1s ease;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 1vh 5vw;
  white-space: wrap;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

#campMain {
  z-index: 4;
}

.blurFilt {
  position: absolute;
  background-size: 38vw 50vh;
  background-repeat: no-repeat;
  background-position: right;
  filter: blur(1px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-left: 22vw;
  width: 38vw;
  height: 35vh;
  transition: filter 1s ease;
}

.campaignModule:hover .campTextHold {
  width: 30vw;
  transition: all ease-out;
  transition-duration: 500ms;
  filter: none;
}

.campaignModule:hover .blurFilt {
  transition: filter 1s ease;
  filter: blur(0.4vh);
}

.campaignModule:hover .campHR {
  width: 25vw;
  transition: all ease;
  transition-duration: 800ms;
}

.campaignModule:hover .campHeader {
  transform: translateY(0);
}

.campaignModule:hover .campText {
  opacity: 0;
  transition: opacity 300ms ease, transform 500ms ease-out;
}

.campaignModule:hover .campTextAfter {
  transform: translateX(0);
  width: 20vw;
  padding: 1vh 5vw;
  opacity: 1;
  transition: opacity 1.5s ease, transform 500ms ease-out;
}

#accountSet {
  z-index: 998;
  position: fixed;
  top: 0;
  margin-left: 69.81vw;
  background-color: #131313;
  width: 30vw;
  height: 7vh;
  justify-content: center;
  border: 0.09vw rgb(18, 216, 124) solid;
  transform: translateY(-11vh);
  transition: transform 1s ease-in-out, border-color 1s ease;
  pointer-events: auto; 
}

.subtext {
  display: flex;
  text-decoration: none;
  position: relative;
  color: aliceblue;
  transition: color 0.3s;
  font-size: 3vh;
  padding: .83vh 0;
  margin: 1vh 3vw;
  opacity: 0.85;
  transition: opacity 1s ease;
}

.subtext:hover {
  opacity: 1;
  cursor: pointer;
}

.headtext, .subtext {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.miniHr {
  width: 25vw;
  border: none;
  height: 0.3vh;
  margin-bottom: 5vh;
  background: linear-gradient(to right, rgba(0,0,0,0), rgb(18, 216, 124), rgba(0, 0, 0, 0));
}

.setHr {
  width: 50vw;
  border: none;
  height: 0.3vh;
  margin-bottom: 1vh;
  background: linear-gradient(to right, rgba(0,0,0,0), rgb(18, 216, 124), rgba(0, 0, 0, 0));
}

.setHrf {
  width: 40vw;
  border: none;
  height: 0.3vh;
  margin-bottom: 4vh;
  background: linear-gradient(to right, rgba(0,0,0,0), rgb(18, 216, 124), rgba(0, 0, 0, 0));
}

#themeG {
  margin: 3vh 32vw 5vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.themeSwitch {
  display: flex;
  aspect-ratio: 1 / 1;
  width: 3.5vw;
  margin: 0.2vh 0.2vw;
}

.themeBut {
  border-radius: 0.3vw;
  border: black 0.2vw solid;
  cursor: pointer;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 3.5vw;
  -webkit-transition: .4s;
  transition: 0.5s;
  opacity: 0.8;
}

.themeBut::before {
  border-radius: 0.1vw;
  content: "";
  aspect-ratio: 1 / 1;
  width: 3.5vw;
  border: black 0.1vw solid;
  transition: 0.5s;
}

input:checked + .themeBut {
  opacity: 1;
}

input:checked + .themeBut:before {
  border: aliceblue 0.1vw solid;
}
/* #12D87C #B012D8*/
#t1 {
  background-color: rgb(18, 216, 124);
}
#t2 {
  background-color: rgb(237, 39, 131);
}
#t3 {
  background-color: purple;
}
#t4 {
  background-color: blue;
}
#t5 {
  background-color: yellow;
}
#t6 {
  background-color: red;
}
#t7 {
  background-color: turquoise;
}
#t8 {
  background-color: whitesmoke;
}

.setHead {
  color: aliceblue;
  text-align: center;
  margin-bottom: 3vh;
}

.setForm {
  padding-top: 3vh;
}

.setLabel {
  color: aliceblue;
  font-size: 1.5vw;
  padding: 0.5vh 10vw;
  margin-bottom: 3vh;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#darkModeSet {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 30vw; /* Full-width */
  height: 1vh; /* Specified height */
  background: linear-gradient(to right, rgb(0,0,0,0), #d3d3d3, rgb(0, 0, 0, 0));
  outline: none; /* Remove outline */
  opacity: 0.8; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s, filter 1s ease;
}

#darkModeSet:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
#darkModeSet::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  aspect-ratio: 0.6 / 1;
  height: 5vh; /* Slider handle height */
  background-image: url(Images/Slider.png); /* Green background */
  filter: hue-rotate(0deg);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer; /* Cursor on hover */
}

.formEl {
  margin: 3vh 10vw 5vh;
}

.switch {
  position: relative;
  display: inline-block;
  aspect-ratio: 30 / 17;
  width: 4vw;
  margin: 3vh 10vw;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 2.27vh;
  transition: background-color 1s ease;
}

.slider:before {
  position: absolute;
  content: "";
  aspect-ratio: 1 / 1;
  width: 2vw;
  left: 0.2vw;
  bottom: .13vw;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgb(18, 216, 124);
  transition: background-color 1s ease;
}


input:checked + .slider:before {
  -webkit-transform: translateX(1.62vw);
  -ms-transform: translateX(1.62vw);
  transform: translateX(1.62vw);
}

#formFill {
  margin-top: 9vh;
  font-size: 1.2vw;
  border-radius: 0.5vw;
  padding: 0.5vh 0.5vw;
}

hr {
  filter: invert(0) sepia(0) saturate(100%) hue-rotate(0) brightness(100%) contrast(100%);
}

#erthan {
  position: fixed;
  border: black solid 0.2vw;
  height: 100vh;
  width: 50vw;
  margin-left: 50vw;
  background-color: black;
  z-index: 9999;
  transform: translateY(-10vh);
  opacity: 0;
  pointer-events: none;
}

#logoFilt {
  height: 10vh;
  aspect-ratio: 1/1;
}

#modeFilt {
  width: 50vw;
  height: 200vh;
  margin-top: -50vh;
  position: fixed;
  margin-left: 50vw;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  background-color: white;
  mix-blend-mode: difference;
}

.overlay:before {
  content: '';
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 110%;
  margin-top: -10vh;
  pointer-events: none;
  background: radial-gradient(circle 10vmax at var(--pointerX) var(--pointerY), rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.95) 100%);
}

:root {
	--pointerX: 50vw;
	--pointerY: 50vh;
}

#formFill {
  background-color: rgb(252, 252, 252);
  border: 0.1vw solid green;
  font-size: 1.5vw;
  border-radius: 1.5vw;
  height: 3vw;
  width: 12vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#formFill:hover {
  cursor: pointer;
}

#Canada {
  font-family: "Carter One", system-ui;
  font-weight: 400;
  font-style: normal;
}
#America {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
#apoc {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.texty{

  height: 3vh;
  border-radius: 3vh;
  font-size: 1.2vw;
  text-indent: 0.5vw;
  width: 25vw;
  padding: 4px;
  border: solid thin #aaa;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.buttony{
  text-align: center;
  margin: 0 9vw;
}

#boxy{

  background-color: #292929;
  margin: auto 35vw;
  width: 30vw;
  border-radius: 5vh;
  height: max-content;
  padding: 20px;
}

#linky {
  color: plum;
  margin-top: 1vh;
}

#Titley {
  text-align: center;
}

#labely {
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: aliceblue;
}

#news {
  height: 75vh;
  width: 50vw;
  border-radius: 7vh;
  background-color: #1F1F1F;
  margin: 10vh 15vw;
  margin-top: 5vh;
  display: grid;
  grid-template-columns: 30vw 20vw;
  grid-template-rows: 10vh 10vh 10vh 10vh 10vh 25vh;
  border: 0.1vw solid;
}

#changelog {
  height: 39.5vh;
  width: 15vw;
  margin-top: 10vh;
  margin-bottom: 7.5vh;
  background: #131313;
  border-radius: 7vh;
  grid-row: 1/6;
  grid-column: 2/3;
  z-index: 1;
  border: 0.1vw solid;
}

#changeHead {
  margin-top: 0.5vh;
}

.newHead {
  display: grid;
  justify-self: center;
  grid-template-rows: 3vh 6vh;
  height: 8vh;
  width: 20vw;
  padding: 0.5vh 1.25vw;
  background-color: #131313;
  border-radius: 3.5vh;
  border: 0.1vw solid;
  overflow: hidden;
  margin-top: 0.3vh;
  cursor: pointer;
}

.newsHead {
  font-size: 1.2vw;
  text-align: left;
  margin-left: 1vw;
  margin-right: 3vw;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.newsP {
  font-size: 0.9vw;
  text-align: left;
  margin-left: 1vw;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#newsHeadline {
  grid-row: 1/2;
  grid-column: 1/3;
  text-align: center;
  display: flex;
  justify-self: center;
  align-items: center;
  padding: 1vh 0;
  font-size: 2.5vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: aliceblue;
  z-index: 2;
}

#sessionRecap {
  grid-row: 6/7;
  grid-column: 1/3;
  background-color: #131313;
  height: 22vh;
  width: 45vw;
  margin: 1.5vh 2.5vw;
  border-radius: 10vh;
  border: 0.1vw solid;
}

.minorHead {
  font-size: 1.7vw;
  padding-bottom: 0.5vh;
}

#minorText {
  padding: 0 3.5vw;
  text-align: left;
}

#iNeedAHero {
  height: 70vh;
  padding-bottom: 20vh;
  width: 100vw;
  background-image: url('Images/CandelvaBlur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

#heroFix {
  position: absolute;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 33vh 38vw;
}

#heroFixy {
  width: 30vw;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 29vh 25vw;
}

#heroFixer {
  position: absolute;
  width: 100vw;
  height: 90vh;
  background-color: #1313136b;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero1 {
  padding: 1vh 0;
  font-size: 3.5vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: aliceblue;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}

#hero2 {
  padding: 1vh 0;
  font-size: 3vw;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: aliceblue;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}

#profilePic {
  width: 2vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-left: 0.25vw;
  margin-top: -0.35vw;
  vertical-align: middle;
}

#feedForm {
  padding: 5vh 1vw;
  width: 50vw;
  height: 53vh;
  margin: 5vh 15vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.required {
  font-size: 1.5vw;
  color: red;
}

.feedElem {
  margin: 3vh 10vw;
}

#nameFont, #commentFont {
  margin-bottom: 0;
}

#nameInp {
  font-size: 1vw;
  width: 3vw;
  text-align: center;
  border-radius: 1vh;
}

#commentImp {
  resize: none;
  margin-bottom: 1vh;
  height: 20vh;
  width: 40vw;
  border-radius: 1vh;
  padding-left: 0.5vw;
  font-size: 1em;
}

#nameInp, #commentImp {
  margin-top: 1.5vh;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #131313;
}