body {
  background-image: url("./drops.jpg");
  background-size: cover;
  background-color: snow;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

textarea {
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  border-left: 1px solid black;
  padding: 10px;
}

.jumbotron {
  text-align: center;
  background-color: transparent;
  color: black;
  border-radius: 0;
  border-bottom: 10px solid black;
  text-shadow: -1px 0 snow, 0 1px snow, 1px 0 snow, 0 -1px snow;
}

.description{
  white-space: pre-wrap;
}

.time-block{
  background-color: rgb(144, 164, 184);
  text-align: center;
  border-radius: 15px;
}

.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid black;;
}

.hour {
  background-color: gold;
  color: #000000;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.past {
  background-color: #d3d3d3;
  color: white;
}

.present {
  background-color: #ff6961;
  color: white;
}

.future {
  background-color: #77dd77;
  color: white;
}

.saveBtn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06AED5;
  color: white;
}

.saveBtn i:hover {
  font-size: 20px;
  transition: all .3s ease-in-out;
}

footer {
  width: 100%;
  height: 40px;
  background-color: black;
  box-shadow: 0px 10px 5px black, 0px -10px 5px black;
}

footer h3 {
  text-align: center;
  color: snow;
}