html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of css reset */

body{
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
	align-items: center;
    flex-direction: column;
}

table {
    margin-top: 25px;
    border-collapse:separate;
    border:solid black 1px;
    border-radius:10px;
}

td, th {
    border-left:solid black 1px;
    border-top:solid black 1px;
}

th {
    background-color: rgb(171, 66, 200);
    padding: 10px;
}

th:first-of-type {
  border-top-left-radius: 10px;
}
th:last-of-type {
  border-top-right-radius: 10px;
}
tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 10px;
}
tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 10px;
}

th a{
	color: whitesmoke;
	font-size: 20px;
}

th a:hover{
	color: rgb(194, 194, 194);
}

td{
	background-color: rgb(116, 116, 116);
	color: whitesmoke;
	padding: 5px;
    font-size: 18px;
}

#pages{
    display: flex;
    box-sizing: border-box;
    justify-self: center;
    justify-content: center;
    text-align: center;
    height: min-content;
    flex-wrap: wrap; 
    max-width: 85%;
    margin-top: 35px;
    margin-bottom: 35px;
    border: 1px black;

}
#pages a{
    border: 0px black solid;
    border-radius: 50px;
    margin: 0 5px 0 5px;
    font-size: 20px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 5px;
    background-color: white;
}

#pages a:hover{
    color: rgba(0, 0, 255, 0.539);
}

h1{
	font-size: 39px;
    font-weight: bolder;
    margin-top: 15px;
    background-color: rgb(171, 66, 200);
    color: whitesmoke;
    padding: 5px 10px;
    border-radius: 15px;
}

.ids{
    text-decoration: none;
	color: whitesmoke;
	padding: 5px;
    font-size: 18px;
}

.ids:hover{
    text-decoration: line-through;
    color: rgb(200, 200, 200);
}

.form{
    margin-top: 15px;
    max-width: 75%;
    text-align: center;
    justify-self: center;
    border: 3px black dotted;
    padding: 5px;
}

.form h2{
    font-size: 23px;
    font-weight: bolder;
    margin-bottom: 15px;
}

.form label{
    font-size: 19px;
    font-weight: bold;
    line-height: 35px;
}

.form input, .form select{
    box-sizing: border-box;
    width: 250px;
    margin-top: 5px;
    padding-left: 10px;
    border-radius: 5px;
    height: 25px;
}

.form input:hover, .form select:hover{
    background-color: rgba(231, 231, 231);
}

#nextID{
    background-color: rgba(239, 239, 239, 0.3);
}

#nextID:hover{
    background-color: rgba(239, 239, 239, 0.3);
}

.form button{
    margin-bottom: 15px;
    margin-top: 15px;
    width: 250px;
    height: 25px;
    border-radius: 10px;
    background-color: rgb(197, 76, 230);
    color: whitesmoke;
    font-weight: bold;
}

.forms{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 75%;
    justify-self: center;
}

#searchForm label{
    font-size: 19px;
    font-weight: bold;
    line-height: 35px;
}

#searchForm{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    align-items: center;
    box-sizing: border-box;
}

#searchForm input, #searchForm select{
    box-sizing: border-box;
    margin-top: 0px;
    max-width: 100%;
    width: 150px;
}

#submit{
    align-self: center;
    margin-bottom: 15px;
    margin-top: 15px;
    width: 250px;
    height: 25px;
    border-radius: 10px;
    background-color: rgb(197, 76, 230);
    color: whitesmoke;
    font-weight: bold;
}

#submit:hover, .form button:hover{
    background-color: rgb(171, 66, 200);
    color: rgb(224, 224, 224);
}

p{
    margin-top: 15px;
    border: 2px black solid;
    margin-bottom: 25px;
    padding: 5px;
    font-size: 15px;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgb(171, 66, 200);
    width: 100%;
    padding: 15px;
}

.account{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.account button{
    border: none;
    border-radius: 25px;
    background-color: rgb(255, 255, 255);
    font-size: 15px;
    padding: 15px;
}

header h1{
	font-size: 39px;
    font-weight: bolder;
    margin-top: 0;
    background-color: rgba(171, 66, 200, 0);
    color: whitesmoke;
    padding: 5px 10px;
    border-radius: 15px;
}


#logInPage{
    box-sizing: border-box;
    width: 75%;
    justify-self: center;
}

#logInPage form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    border: 1px black solid;
    margin-top: 15px;
    padding: 25px;
}

#logInPage input{
    display: flex;
    flex-direction: column;
    border: 0;
    border-bottom: 1px black solid;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 15px;
    padding-left: 5px;
}

#logInPage label{
    font-size: 20px;
}

#logInPage button{
    align-self: center;
    background-image: linear-gradient(to right, rgb(165, 34, 202) , rgb(208, 114, 234));
    width: 75%;
    padding: 5px;
    color: whitesmoke;
    border: none;
    border-radius: 25px;
}

#logInPage button:hover{
    background-image: linear-gradient(to right, rgb(128, 26, 156) , rgb(166, 94, 186));
}

#logInPage a{
    align-self: center;
    margin-top: 15px;
    color: black;
    text-decoration: none;
}

#logInPage a:hover{
    text-decoration: underline;
}

#accountMaker{
    box-sizing: border-box;
    width: 75%;
    justify-self: center;
}

#accountMaker form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    border: 1px black solid;
    margin-top: 15px;
    padding: 25px;
}

#accountMaker input{
    display: flex;
    flex-direction: column;
    border: 0;
    border-bottom: 1px black solid;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 15px;
    padding-left: 5px;
}

#accountMaker label{
    font-size: 20px;
}

#accountMaker button{
    align-self: center;
    background-image: linear-gradient(to right, rgb(165, 34, 202) , rgb(208, 114, 234));
    width: 75%;
    padding: 5px;
    color: whitesmoke;
    border: none;
    border-radius: 25px;
}

#accountMaker button:hover{
    background-image: linear-gradient(to right, rgb(128, 26, 156) , rgb(166, 94, 186));
}

#accountMaker a{
    align-self: center;
    margin-top: 15px;
    color: black;
    text-decoration: none;
}

#accountMaker a:hover{
    text-decoration: underline;
}

