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: 35px;
}

html, body {
	height: 100%;
	/* overflow: hidden; note to self: Pages with tables and stuff need to be turned off or else you can't scoll down the page. thank undertale. */
	margin: 0;
  	padding: 0;
}


body {
	background: linear-gradient(130deg, #0051ff, #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%; /* note to self, 100% makes the background not move. Use 100% for images. ya.*/  
	background-attachment: fixed; /* Keeps it fixed when scrolling */
}

/* 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%;
	}
}

#titlebar {
	background-color: #39587F;
	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%;
}

div.tab button {
	background-image: radial-gradient(circle, hsla(235, 100%, 75%, 1) 0%, hsla(0, 0%, 0%, 1) 100%);
	border-radius: 8px;
	border: none;
    font-family: "Lexend",Arial,sans-serif!important;
	box-sizing: border-box;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 20px;
	font-weight: 500;
	height: 4rem;
	padding: 0 1.6rem;
	text-align: center;
	text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
	transition: all 0.5s ease-in-out;
	user-select: none;
	touch-action: manipulation;
	box-shadow: rgba(0, 0, 0, 0.411) 0px 1px 10px;
}

div.tab button:hover {
	box-shadow: rgb(0, 0, 0) 0px 1px 30px;
}

@media (min-width: 768px) {
	div.tab button {
		padding: 0 2.6rem;
	}
}

/* UPPER BAR AND BACKGROUND IS ABOVE. SHOULD BE ON EVERY PAGE FOR STUDENT. ALSO THE HELL IS STATIC DEMO BACKGROUND MEAN????????? */

header {
	padding-top: 5px;
	/* padding-left uses viewport calculation in order to stop scrollbar from shifting heading content over (not needed as the scrollbar is hidden)*/
	/* padding-left: calc(100vw - 100%); */
}

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: #ffffff;
}

p {
	font-size: 50px;
}

img {
	padding-top: 50px;
}

table,
th,
tr,
td {
	background-color: white;
	border: 1px solid black;
	border-collapse: collapse;
	border-spacing: 5px;
	color: rgb(47, 47, 48);
	padding: 2px 10px;
	position: center;
	text-align: left;
	vertical-align: middle;
}
table {
	background-color: #eaecef;
	border-collapse: collapse;
	text-align: center;
}

th {
	background-color: #eaecef;
	color: black;
	font-size: 15px;
	text-align: center;
	box-shadow: 3px 3px 1px rgb(81, 84, 107);
}

#titlebar {
	background-color: rgb(0, 255, 76);
	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%;
}

#loginBox {
	background: linear-gradient(354deg, #393549, #595774, #a29bcc);
	border-radius: 15px;
	box-shadow: 2px 3px 5px #39587F;
	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;
}