/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  padding: 5px 25px;
  font-size: 18px;
  margin: 0;
  color: #444;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
}

table {
  text-align: center;
  width: 490px;
  border: 1px;
  border-color: black;
}

.target{
  padding-top: 5px;
  padding-bottom: 5px;
}

.sun {
  color: red;
  background-color: lightpink;
}

.sat {
  color: darkblue;
  background-color: lightblue;
}

.notThisMonth {
  color:darkgray;
  background-color: lightgray;
}

.sunNotThisMonth {
  color: rgba(148, 53, 53, 0.8);
  background-color: rgba(148, 53, 53, 0.3)
}

.satNotThisMonth {
  color: rgba(38, 38, 168, 0.8);
  background-color: rgba(38, 38, 168, 0.3);
}