
h1 {
  font-family: Didot;
  font-size: 52px;
  text-align: center;
  color: white;

}
.week {
  display: flex;
}

.day {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}

.week:first-of-type .day:first-of-type {
  margin-left: 42.85714%;
}

.week:last-of-type .day:last-of-type {
  margin-right: 14.285%;
}

/* OTHER STYLES */



body {
 background-image: url("images/spooky2.jpg");
  background-attachment: fixed;
}

.month {
  max-width: 560px;
  margin: 20px auto;
}

.week {
  height: 80px;
}

.day {
  color: white;
  padding: 5px;
  background-color: transparentize(white, white);
  box-shadow:
    -1px -1px white,
    inset -1px -1px 0 0 white;
}
