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

/*User input text area*/
textarea{
  background: transparent;
  border: none;
  resize: none;
  color: white;
  border-left: 1px solid black;
  padding: 10px;
}

/*Header*/
.jumbotron {
  text-align: center;
  background-color: transparent;
  color: white;
  border-bottom: 10px solid teal;
  background-image: url("./assets/2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: lighten;
  position: static;
}

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

/*Planner hours*/
.time-block{
  text-align: center;
  border-radius: 15px;
}

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

.hour {
  background-color: lightgray;
  color: darkslategray;
  text-align: left;
  font-weight: bold;
  padding: 0;
}

/*changes the color of the text box*/
.past {
  background-color: #d3d3d3;
  color: white;
}

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

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

/*save button*/
.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;
}

/*media section for max width 768px*/
@media screen and (max-width: 770px) {

 textarea{
   padding: 0;
   font-size: smaller;
 }

 .hour{
   font-size: smaller;
   text-align: center;
 }

 .saveBtn{
   padding: 0;
 }

}
   