body {
  background-color: black;
  color: white;
}
head {
  color: white;
}
h1 {
  color: white; font-size: 50; text-align: center
}
table{
  color: white; border: 0px solid white; text-align: center
}
th, td {
  color: white; width: 33%; border: 0px solid white; text-align: center;
}
.error {
  color: red;
}
.movieTables {
  border: 2px solid white;
}
.buttonLarge {
  background-color: black;
  border-color: white;
  border: 2px solid white;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.buttonLarge:hover {
  background-color: white;
  color: black;
}
.buttonSmall {
  background-color: black;
  border-color: white;
  border: 2px solid white;
  color: white;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.buttonSmall:hover {
  background-color: white;
  color: black;
}