body {
	background-color: #96e1f0;
	/*background-image: url("http://img4.wikia.nocookie.net/__cb20120730200249/ipod/images/6/65/Earth_and_Moon.jpg");*/
	background-image: "pictures/Earth_and_Moon.jpg";
	/* OK SO THE ABOVE WAS JUST LOADING A DAMN WEBP FILE FOR A RANDOM MOMENT??? */
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}


* { /* * = all elements. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small
}

/* Basically imitating the hell out of the hyperlink tag, but as a button */
.fake_hyperlink {
	background: none;
	border: none;
	text-decoration: underline;
	color: blue;
}

.fake_hyperlink:hover {
	cursor: pointer;
}

.fake_hyperlink:active {
	border-style: none;
	color: red;
	position: relative;
	left: -1px;
}

/* https://www.w3schools.com/css/css_form.asp <-- make your forms looks real nice */
/* Login button is inside the form. but that transfers me to a new page, not AJAX. */ 

.form {
	/*display: inline;*/
}

.form .show_pass_button {
	padding: 2px;
}

.form .notice {
	color: red;
	padding-left: 5px;
}

.form table {
	border-spacing: 0px;
}

.form table td {
	padding: 0px;
}
