html {
	font-family: 'Tomorrow', sans-serif;
	background: #67B26F;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #4ca2cd, #67B26F);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #4ca2cd, #67B26F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

h1 {
	text-align: center;
	margin-top: 0;
	border: 2px solid #077a6d;
	box-shadow: 0 0 10px black;
	padding: 10px;
	font-size: 40px;
	font-weight: normal;
	color: #e0e0e0;
}

#formID {
	background-color:#4d4d4d ;
	text-align: center;
	width: 30%;
	margin: auto;
	border-left: 2px solid #077a6d;
	border-right: 2px solid #077a6d;
	border-top: 2px solid #077a6d;
	box-shadow: 0 0 30px;
	padding: 30px;
	margin-top: 100px;
}

#errorMessage {
	padding: 0;
	color: red;
	font-size: 25px;
	text-decoration: underline;
	display: none;
}

button {
	margin-top: 50px;
	font-size: 26px;
	font-weight: 700;
	background-color: #f0eae8;
	color: #077a6d;
	width: 100%;
	outline: none;
}

button:hover {
	transition: .5s;
	color: #d98a13;
	border: 2px solid #d98a13;
}

label {
	padding-left: 10px;
	font-size: 20px;
	color: #077a6d;
}

input {
	border: none;
	font-size: 14px;
	color: #5e5d5d;
	font-weight: 500;
	background-color: #f0eae8;
	text-align: center;
}

input:hover {
	transition: .5s;
	background-color: #ffd386
}

input:focus {
	outline: none;
}

ul {
	margin-top: 40px;
	border: 2px solid #077a6d;
	box-shadow: 0 0 10px;
	padding: 0;
}

ul li {
	padding: 5px;
	color: #e0e0e0;
	list-style-type: none;
}

ul li:hover:nth-child(1n) {
	border: 4px solid #d98a13;
	background-color: #141413;
	transition: .5s;
	color: #d98a13;
}

ul li:nth-child(2n) {
	background-color: #3d3c3c;
}

.selected {
	color: gray;
	text-decoration: line-through;
}

.error {
	border: 1px solid red;
	background-color: #ffcedf;
	transition: .8s;
}

::placeholder {
	color: gray;
	opacity: 0.7;
}

hr {
	border: .7px solid white;
	opacity: .3;
	width: 60%;
}

/*font size 35px*/
span {
	float: left;
	font-size: 20px;
	color: white;
	line-height: 55px;
	margin-left: 5px;
}

span:hover {
	transition: .6s;
	font-size: 40px;
	color: #d43e2d;
}

#tableID {
	width: 30%;
	margin: auto;
	padding: 30px;
	background-color: #3d3c3c;
	border-left: 2px solid #077a6d;
	border-right: 2px solid #077a6d;
	border-bottom: 2px solid #077a6d;
	box-shadow: 5px 5px 10px;
	display: none;
}


#tableID table{
	text-align: center;
	width: 100%;
	margin:  auto;
	color: white;
	background-color: #064d4d;
	font-size: 17px;
	box-shadow: 5px 5px 10px black;
}

#tableID table tr:nth-child(2n){
	background-color: #077a6d;
}

#tableID table tr:hover {
	transition: .5s;
	background-color: #ffd386;
	color:#3d3c3c;
}

hr#divider {
	margin: 30px auto;
	width: 35%;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	display: none;
}

h2 {
	margin: 5px;
	padding: 0;
	color: #ffd386;
	text-align: left;
	font-weight: normal;
}

#archives{
	text-align: center;
	border: 2px solid gray;
	width: 33%;
	margin: auto;
}

#archives button{
	color: black;
	margin: 0;
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
}