body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

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

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

.subtitle {
  font-style: italic;
}

#currentDay {
  margin-top: 50px;
  font-size: 1.6rem;
  font-weight: bolder;
}

.description{
  white-space: pre-wrap;
  width: 75%;
}

.time-block{
  text-align: center;
  border-radius: 15px;
}

.row {
  white-space: pre-wrap;
  height: 60px;
  border-top: 1px solid white;
  margin: 0 5%;
}

.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
  padding: 10px 15px 0 0;
  width: 10%;
  min-width: 55px;
}

.past {
  background-color:#e5eaef;
  color: #b5b5b5;
}

.present {
  background-color: #fffbc9;
  color: #881900;
}

.future {
  background-color: #e9faff;
  color: #0049b7;
}

.saveBtn, .clearBtn {
  display: inline-block;
  border-left: 1px solid black;
  color: #dcdcdc;
  font-size:1.2em;
  padding: 15px;
  min-width: 55px;
}

.saveBtn {
  background-color: #2586d9;
}

.clearBtn {
  background-color: #d55656;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.saveBtn i:hover, .clearBtn i:hover {
  font-size: 1.3em;
  transition: all .2s ease-in-out;
  color: white;
}

@media only screen and (max-width: 992px) {
  .description{
    white-space: pre-wrap;
    width: 65%;
  }
}