* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the top navigation bar */
.header {
  overflow: hidden;
  background-color: #5f6062;
}

/* Style the topnav links */
.header a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
}

/* Style for header headings */
.header h1 {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
}

/* Change color on hover */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  overflow: scroll;
  color: #333333;
  background-color: #ffffff;
  padding: 10px;
  /* height: 200px; */
}

/* Style the footer */
.footer {
  color: white;
  background-color: #5f6062;
  padding: 10px;
}

/* List Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

li {
  flex: 0 200px;
  height: 200px;
  margin: 10px;
  padding: 10px;
  border: 1px solid silver;
  border-radius: 25px;
  text-align: center;
  vertical-align: middle;
}

#list th, td {
  padding: 5px;
}

#list th {
  background-color: black;
  color: white;
}
#list tr:nth-child(even) {
  background-color: #f2f2f2;
}

#edit th, td {
  border-top: 1pt solid black;
  vertical-align: middle;
}

#edit th {
  background-color: black;
  color: white;
}

.button {
  background-color: #0081bc;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
