html, body {
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	position: relative;
}

body {
	/* vars go here */
	--sizing: 24px;
	--page-timing: 0.15s;

	--col-background: rgb(68, 12, 82);
	--col-body: #37195f;
	--col-dim: #eee;
	--col-text: #daffd7;
	--col-accent: #46ff7f;
	--col-counterpick: #1fc;
	--col-shadow: rgba(0,0,0,0.1);

	--font-big: 'James';
	--font-big-size: 32px;
	--font-main: 'Citree';
	--font-main-size: 18px;

	--shadow: -4px 4px var(--col-shadow);
	--button-height: 64px;

	overflow-y: scroll;
}

body {
	background: var(--col-background);
	font-family: var(--font-main);
	font-size: var(--font-main-size);
	padding-top: 3%;
}

main {
	position: absolute;
	right:10px;
	display: block;
	width: 80%;
	margin: 0 auto;
	color: var(--col-text);
	padding: var(--sizing);
	background-color: var(--col-body);
	box-shadow: var(--shadow);
	border: 2px solid #47ff6f;
}

h1 {
	font-family: var(--font-big);
	font-size: var(--font-big-size);
	margin: 0;
}

hr {
	border: 0;
	border-bottom: 2px solid var(--col-background);
	margin: 0;
	margin-bottom: var(--sizing);
	width: calc(100% + var(--sizing) * 2);
	left: calc(var(--sizing) * -1);
	position: relative;
}

a {
	text-decoration: none;
	color: var(--col-accent);
}

a:hover {
	color: var(--col-counterpick);
}

section {
	margin: 0;
	position: relative;
	margin-bottom: var(--sizing);
}

section p {
	margin: 0;
	width: 100%;
}

section:last-child {
	margin-bottom: 0;
}

section > p, section > h1 {
	margin-bottom: var(--sizing);
}

section > p:last-child, section > h1:last-child {
	margin-bottom: 0;
}

section.alert {
	display: block;
	padding-bottom: 0;
}

section.alert p {
	width: fit-content;
	padding: 4px;
	border-radius: 6px;
	color: #fff;
	margin: 0;
}

section.alert p.error {
	background-color: #fd7d7d;
}

section.alert p.success {
	background-color: #7bffa2;
}

form input, form .button, form select {
	margin-bottom: var(--sizing);
}

form label {
	margin-bottom: calc(var(--sizing) / 2);
}

form input, form label, form select {
	display: block;
}
nav {
	z-index: 999;
	color:#47ff6f;
	background-color: #210f49;
	background-image: url("/images/sitewide/navgif.gif");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-y: 97%;
	position:absolute;
	padding: 10px;
	top:0px;
	height: 930px;
	width: 200px;
	transform: translate(-220px);
	transition: .2s;
}

.navlink {
	font-family: James;
	text-align: center;
	text-transform:uppercase;
	margin-top:70px;
	min-width:210px;
}

.navlink img {
	width:210px;
}

.navlink a:hover {
	color: #b3f0f2;
	text-decoration: underline;
}

.dropdown {
	position: relative;
	display: block;
	color: #47ff6f;
	z-index:999;
}

.dropdown-content {
	display: none;
	top: -20px;
	left:210px;
	position: absolute;
	background-color: #3f2676;
	width: 200px;
	z-index:999;
	border:2px solid #47ff6f;
}

.dropdown-content:after,
.dropdown-content:before {
	right: 100%;
	top: 33px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.dropdown-content:after {
	border-color: rgba(136, 183, 213, 0);
	border-right-color: #47ff6f;
	border-width: 10px;
	margin-top: -10px;
}

.dropdown-content:before {
	border-color: rgba(194, 225, 245, 0);
	border-right-color: #47ff6f;
	border-width: 13px;
	margin-top: -13px;
}

.dropdown-content a {
	padding: 10px;
	text-decoration: none;
	display: block;
	color: #4ddf59;
	text-align: center;
	z-index:999;
}

.dropdown-content a:hover {
	background-color: #a88fed;
	color: #000;
}

.dropdown:hover .dropdown-content {
	display: grid;
}

.dropdown:hover {
	cursor: pointer;
}

#openNav {
	z-index:9;
	margin: 0px;
	padding: 0px;
	position:absolute;
	text-align: center;
	left:0px;
	top:0px;
	width:50px;
	height:930px;
	background-color: #3f2676;
	transition: .2s;
	border-right:2px solid #47ff6f;
	cursor: pointer;
}

#openNav:hover {
	transform: scaleX(1.1);
}

#openNav h1 {
	position: absolute;
	color: #47ff6f;
	transform: rotate(-90deg);       
	font-family: James;
	font-size:32px;
	top:40%;
	left:-10px;
	text-shadow:
	0 0 7px #13db1d57,
	0 0 10px #c8ffd4a2,
	0 0 20px #c5eece71;
}

#openNavBtn {
	display: none;
}

.openNavArrow {
	position:absolute;
	z-index:99;
	top:42%;
	left:55px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 25px 0 25px 25px;
	border-color: transparent transparent transparent #47ff6f;
	opacity: .1;
	transition: .5s;
	visibility: visible;
}

#openNav:hover > .openNavArrow {
	opacity:1;
	transition: .5s;
	transform: translateX(10px);
}

#openNavBtn:checked + label > div {
	left:220px;
	transition: .2s;
}

#openNavBtn:checked + label > nav {
	transform: translate(0px);
}

#openNavBtn:checked + label .openNavArrow {
	visibility: hidden;
}

#galleryLinks {
	position:absolute;
	display:flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: row;
	top:10px;
	right:10px;
	width:380px;
	height:49px;
	color: #47ff6f;
	font-style: normal;
}

#galleryLinks h1 {
	font-size:30px;
}

.galleryArt {
	text-align: center;
	padding:10px;
	padding-top:0px;
	background-color: #37195f;
	border: 2px solid #47ff6f;
	border-bottom:none;
	border-radius: 25px 25px 0 0;
	width:110px;
	z-index:1;
}

.galleryAnimation {
	text-align: center;
	padding:10px;
	padding-top:0px;
	background-color: #342c3d;
	border: 2px solid #47ff6f;
	border-radius: 25px 25px 0 0;
	width:200px;
	z-index:1;
}

.galleryAnimation h1 {
	color:rgb(38, 102, 44);
	user-select: none;
}

.galleryAnimation:hover {
	background-color: #715f85;
	cursor:pointer;
}

.galleryAnimation:hover h1 {
	color:rgb(115, 221, 126);
}
