body {
	margin: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: chocolate;
}

#mainpage h1{
	margin-top: 15rem;
}

#readpage h1{
	margin-top: 15rem;
}

#updatepage h1{
	margin-top: 20rem;
}

#deletepage h1{
	margin-top: 18rem;
}

h1{
	text-align: center;
	color: gold;
	font-size: 2.5rem;
	text-shadow: 10px 10px 10px chocolate;
	font-family: Verdana;
	text-transform: uppercase;

}

.field{
	margin-left: 25%;
}

#showaccount{
	margin-left: 13%;
	color: black;
	background-color: rgb(37, 79, 79);
	width: 20rem;
	border: black solid 1px;
	font-size: xx-large;
}

#deleteaccount{
	margin-left: 13%;
	color: black;
	background-color: rgb(37, 79, 79);
	width: 20rem;
	border: black solid 1px;
	font-size: xx-large;

}

nav ul {
	list-style-type: none;
	padding: 0;
}

nav ul li {
	font-size: 40px;
	font-family: sans-serif;
	background-color: white;
	border: 2px solid black;
	letter-spacing: 0.1em;
	width: 10em;
	height: 3em;
	line-height: 3em;
	position: relative;
	overflow: hidden;
	margin: 0.5em;
	cursor: pointer;
}

nav ul li span {
	color: white;
	mix-blend-mode: difference;
}

nav ul li::before {
	content: '';
	position: absolute;
	width: 3em;
	height: inherit;
	background-color: black;
	border-radius: 50%;
	top: 0;
	left: -1.29em;
	transition: 0.5s ease-out;
}

nav ul li:hover::before {
	transform: scale(7);
}

.hidden{
	display: none;
}

span{
        font-size: 5.5rem;
}

.span1{
	font-size: 4rem;
}

.span2{
	font-size: 2.2rem;
}

.span3{
	font-size: 3rem;
}

.span4{
	font-size: 5rem;
}

#loginfield{
	color: black;
	margin: 3%;
	margin-top: 10%;
}

#loginname{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #loginpass{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #usernamelabel{
	font-size: x-large;
	margin-left: 1rem;
  }
  
  #passlabel{
	font-size: x-large;
	margin-left: 4rem;
  }
  
  input{
  
	background-color: white;
	color: black;
	font-size: x-large;
	padding-left: .5rem;
  }
  
  #error{
	text-align: center;
  }
  
  .regfield{
	color: black;
	margin: 3%;
	margin-top: 10%;
  }
  
  #accountnamelabel{
	font-size: x-large;
	margin-left: 3rem;
  }
  
  #accountusernamelabel{
	font-size: x-large;
	margin-left: 1rem;
  }
  
  #accountpasslabel{
	font-size: x-large;
	margin-left: 4rem;
  }
  
  #accountname{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #accountusername{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #accountpass{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #newloginname{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #newloginpass{
	height: 2rem;
	width: 12rem;
	border-radius: 15px;
  }
  
  #updatespan{
	text-align: center;
  }
  
  #deletespan{
	text-align: center;
  }
  
  #newusernamelabel{
	font-size: x-large;
	margin-left: 1rem;
  }
  
  #newpasslabel{
	font-size: x-large;
	margin-left: 4rem;
  }
  
  #showaccount{
	margin-top: 10%;
	color: white;
	background-color: red;
  }

  td{
	color: white;
  }

.backbutton{
	width: 10rem;
	height: 5rem;
	font-size: 3rem;
	font-weight: bolder;
	color: black;
	margin: auto;
	border-radius: 1rem;
	background-color: yellow;
}

.buttoncontainer{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;
}

#deleteaccountbutton input{
	width: 5.5rem;
	border-radius: 1rem;
}

#deleteaccountbutton span{
	font-size: 2.5rem;
}

#deltable{
	display: flex;
	align-items: center;
	justify-content: center;
}

#uptable{
	display: flex;
	align-items: center;
	justify-content: center;
}

#readtable{
	display: flex;
	align-items: center;
	justify-content: center;
}

#delinput{
	display: flex;
	align-items: center;
	justify-content: center;
}

#updateid{
	width: 5.5rem;
	border-radius: 1rem;
	margin-left: 5rem;
}

#updateusername{
	width: 10rem;
	border-radius: 1rem;
}

#updatepass{
	width: 10rem;
	border-radius: 1rem;
	margin-left: 9.5rem;
}

#updatefield span{
	font-size: 2.5rem;
}

#updateaccount td{
	color: white;
	font-size: 2rem;
	background-color: red;
}

table{
	width: 75%;
	border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
 
  td:last-child {
    text-align: center;
  }

 #deleteaccount{
	background-color: red;
 }