body {
	background: rgb(25, 103, 116);
	font-family: "black-beard", sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 17pt;
}

a {
	color: black;
}

div {
  padding-bottom: 10px;
}

input + span {
  padding-right: 30px;
}

input:invalid + span::after {
  position: absolute;
  content: "";
  padding-left: 5px;
}

input:valid + span::after {
  position: absolute;
  content: "";
  padding-left: 5px;
}


.formbox {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	text-align: center;
}

.page-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height:100vh;
}

.page-container,.page-container2 {
	background-image: url("./scroll.png");
	background-size: 100% 100%;
}

.page-container2 {
	padding-top: 180px;
	text-align: center;
}

.textbox {
	display: flex;
	flex-direction: row;
	padding: 10px;
	text-align: left;
	width: 200px;
}

#name,#password {
	width: 100%;
	margin-left: 5px;
}

#submit, #close {
	background: transparent;
	border-radius: 5px;
	padding: 10px;
	border: 1px dashed black;
	cursor: pointer;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
}

#submit:hover,#close:hover {
	border: 1px dashed white;
	color: white;
}

.intro {
	text-align: center;
}

#alert {
	flex-direction: column;
	align-items: center;
	align-content: center;
	display: none;
	position: absolute;
	padding-top: 20px;
	top: 50%;
	left: 30%;
	background: url('./scroll.png');
	height: 250;
	width: 450;
	background-size: 100% 100%;
	text-align: center;
}

#hint,#nouser {
	display: none;
	margin-top: auto;
}

#closecontainer {
	margin-bottom: auto;
}



#logout {
	padding-top: 10px;
	font-style: oblique;
	font-size: 0.8em;
}

#tabletitle {
	padding-top: 20px;
	font-size: 1.4em;
}

.date {
	margin-right: auto;
	margin-top: 20px;
	width: 98%;
	text-align: left;
	font-size: 1.3em;
	background: color(srgb 0.9019 0.7532 0.4712);
	padding: 5 0 8 10;
}

.tablecontainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding-bottom: 300px;
}

table {
	width: 500px;
	background: color(srgb 0.965 0.8868 0.6996);
	border: 1px solid gray;
	border-collapse: collapse;
	font-size: 1.1em;
}

tr {
	border-bottom: 1px solid gray;
}

td {
	padding: 5px 0px;
	text-align: center;
}

td.minus {
	background: rgb(159, 51, 51);
}

td.plus {
	background: rgb(63, 128, 63);
}