/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: serif; /* used to be Verdana */
  margin: 0;
}

#header {
	background-color: #44097a;
	margin: 0;
}

.horizontal-flip {
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.scale-1-1 {
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.schedule-table {
	border: 1px solid white;
}
.schedule-table tr {
	border: 1px solid white;
}
.schedule-table td {
	border: 1px solid white;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 50%;
  }
  img {
    width: 32px;
    height: 32px;
  }
}







