tml {
	overflow: scroll;
	overflow-x: hidden;
}
/* 	im like 90% percent sure this isn't needed. all it does is lock the screen so people can't scroll. cool. */
::-webkit-scrollbar {
	width: 0;
}

textarea {
	resize: none;
}

h1 {
  padding-top: 15px;
  padding-bottom: 0px;
}

html, body {
	height: 100%;
	overflow: hidden;
	margin: 0;
  	padding: 0;
}

body {
	background: linear-gradient(130deg, #000000, #ffffff, #000000); /* placeholder colors: #0051ff, #ffffff, #000000 */
	color: #0000007e;
	/* background-image: url('../images/placeholder.png'); placeholder image  */
	font-family: "Lexend",Arial,sans-serif!important;
	text-align: center;
	margin: 0px;
	padding: 0px;
	height: 100%;
    animation: StudentsHome 40s infinite;
	background-repeat: no-repeat;
	background-size: 200% 200%;
	background-attachment: fixed;
}

/* note to self, 100%, 100% is top left and 100%,0% is bottom right. */
@keyframes StudentsHome {
	0% {
		background-position: 100% 0%;
	}
	25% {
		background-position: 100% 100%;
	}
	50% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 0%;
	}
}
/* The header saying "21 Century Endorsement Tracking */
h1 {
	color: #ffffff;
	font-size: 42px;
	font-weight: 600;
	text-align: center;
	text-shadow:  1px 1px;
	font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

h2 {
	color: rgb(47, 47, 48);
}


img {
	padding-top: 50px;
}

p {
	font-size: 50x;
}

table {
	padding-left: 50px;
	padding-top: 50px;
}

table,
th,
td {
	color: rgb(47, 47, 48);
	padding-top: 30px;
	position: center;
}

#button {
	background-color: white;
	border-color: black;
	border-radius: 2px;
	border-radius: 15px;
	border-style: solid;
	border-width: 1px;
	color: black;
	height: 30px;
	margin-top: 5px;
	width: 25%;
}

#titlebar {
	background-color: #d9d2d4;
	border-bottom: 1px solid black;
	color: white, 0.9;
	filter: alpha(opacity=60);
	font-family: Arial;
	font-size: 48px;
	font-stretch: expanded;
	font-style: normal;
	margin-bottom: 0px;
	padding: 6px 0px 6px 0px;
	position: relative;
	text-align: center;
	width: 100%;
}

#descriptionBox {
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
	height: 400px;
	padding-bottom: 450px;
	width: 800px;
	word-wrap: break-word;
}

#content {
	border-radius: 2px;
	box-shadow: 2px 3px 5px #000000;
	color: white;
	height: auto;
	margin-bottom: 4px;
	margin-left: 10px;
	margin-right: 0px;
	margin-top: 5px;
	max-height: 800px;
	max-width: 1000px;
	overflow-y: auto;
	padding: 6px 10px 10px 10px;
	text-align: left;
	/* Set color of text and background */
	/* background-color:; */
	/* Set max and min width and height for resizing. */
	/* Default */
	/* Default */
}


#nextPageForm {
	background-color: gray;
	border-color: black;
	border-top: 1px;
	border-top-style: solid;
	bottom: 0px;
	padding-bottom: 8px;
	padding-top: 6px;
	position: absolute;
	text-align: center;
	width: 100%;
}

#loginBox {
	background: linear-gradient(148deg, #b9b1b1, #7a7272, #333232);
	border-radius: 15px;
	box-shadow: 0px 0px 20px 4px #405374;
	display: inline-block;
	margin-top: 100px;
	padding: 20px;
	width: auto;
}

.btn {
	-webkit-transition-duration: 0.1s;
	background-color: white;
	border-color: black;
	border-radius: 15px;
	border-style: solid;
	border-width: 2px;
	color: black;
	cursor: pointer;
	display: inline-block;
	height: 30px;
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	transition-duration: 0.4s;
	white-space: nowrap;
}

.btn:hover {
	background-color: black;
	border-color: white;
	color: white;
}

/* input[type='checkbox'] {
	height: 0;
	width: 0;
}

input[type='checkbox']+label {
	align-items: center;
	color: #9e9e9e;
	display: flex;
	margin: .6em 0;
	position: relative;
	transition: color 250ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox']+label>ins {
	bottom: 0;
	display: block;
	height: 0;
	left: 2em;
	overflow: hidden;
	position: absolute;
	text-decoration: none;
	transition: height 300ms cubic-bezier(.4, .0, .23, 1);
	width: 100%;
}

input[type='checkbox']+label>ins>i {
	bottom: 0;
	color: #4FC3F7;
	font-style: normal;
	position: absolute;
}

input[type='checkbox']+label>span {
	align-items: center;
	background: transparent;
	border: 2px solid #9E9E9E;
	border-radius: 2px;
	cursor: pointer;
	display: flex;
	height: 1em;
	justify-content: center;
	margin-right: 1em;
	transition: all 250ms cubic-bezier(.4, .0, .23, 1);
	width: 1em;
}

input[type='checkbox']+label:hover,
input[type='checkbox']:focus+label {
	color: #fff;
}

input[type='checkbox']+label:hover>span,
input[type='checkbox']:focus+label>span {
	background: rgba(255, 255, 255, .1);
}

input[type='checkbox']:checked+label>ins {
	height: 100%;
}

input[type='checkbox']:checked+label>span {
	animation: shrink-bounce 200ms cubic-bezier(.4, .0, .23, 1);
	border: .5em solid #FFEB3B;
}

input[type='checkbox']:checked+label>span:before {
	animation: checkbox-check 125ms 250ms cubic-bezier(.4, .0, .23, 1) forwards;
	border-bottom: 3px solid transparent;
	border-right: 3px solid transparent;
	content: "";
	left: .2em;
	position: absolute;
	top: .6em;
	transform: rotate(45deg);
	transform-origin: 0% 100%;
} */

@keyframes shrink-bounce {
	0% {
		transform: scale(1);
	}

	33% {
		transform: scale(.85);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes checkbox-check {
	0% {
		border-color: #212121;
		height: 0;
		transform: translate3d(0, 0, 0) rotate(45deg);
		width: 0;
	}

	33% {
		height: 0;
		transform: translate3d(0, 0, 0) rotate(45deg);
		width: .2em;
	}

	100% {
		border-color: #212121;
		height: .5em;
		transform: translate3d(0, -.5em, 0) rotate(45deg);
		width: .2em;
	}
}

