body {
  display: flex;
  flex-flow: column wrap;
  margin: auto;
}

header,
article,
footer {
  border-radius: 15px;
  border: 1px solid;
  padding: 10px;
  margin: 20px;
  flex: 1 100%;
}

nav .dropdown:hover .dropdown-menu {
  display: block;
}

nav .dropdown-menu a.dropdown-item:active {
  color: white;
}

a {
  display: inline-block;
  text-decoration: none;
}

a.hover:hover {
  text-decoration: underline;
}

footer a {
  color: black;
  text-align: center;
  padding: 14px 16px;
}

p {
  margin: 30px;
  font-family: New Times Roman;
  font-size: 115%;
}
h1 {
  text-align: center;
}
td,
th {
  text-align: center;
}
#the-table thead th {
  background-color: #df6c20;
  position: sticky;
  top:0;
}
article {
  padding: 40px;
  background: #ffede0;
  border-color: #df6c20;
  flex: 1 1;
  flex-direction: column;
}

footer {
  background: #e4ebf2;
  border-color: #8a9da8;
  display: flex;
  flex-flow: row wrap;
}

footer a:hover {
  text-decoration: underline;
  color: green;
}

button {
  font-size: 18px;
  margin-top: 20px;
}

#myInput {
  background-image: url("../IMG/searchicon.png");
  background-position: 10px 10px;
  background-size: 20px;
  background-repeat: no-repeat;
  width: 90%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}
.dropdown-check-list {
  display: inline-block;
}

.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;
}

.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 20%;
  transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}

.dropdown-check-list .items {
  padding: 2px;
  display: none;
  margin: 0;
  border: 1px solid black;
  background-color: white;
}

.dropdown-check-list ul.items li {
  list-style: none;
}

.dropdown-check-list.visible .anchor {
  color: #0094ff;
}

.dropdown-check-list.visible .items {
  display: block;
}
