body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
  /* background stuff */
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 500% 500%;
    animation: gradient 15s ease infinite;
    /* background stuff; */
}

/* background stuff start */
html, body {
  width: 100%;
  height:100%;
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
/* background stuff end */

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;
  height: 250px;
  max-width: 100%;
}

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

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

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

.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
}

.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 0.3s ease-in-out;
}

.input-group {
  /* border: 2px solid black; */
  margin: 5px;
  max-width: 80%;
  box-shadow: 0 0 10px 2px;
  border: 3px solid black;
}

.left-input {
  /* border: 1px solid black; */
  box-shadow: 0 0 10px 2px;
  display: flex;
  align-items: center;
  justify-content: center;  
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
}

.col-span-2 {
  /* border: 1px solid black; */
  /* width: 60px; */
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
  /* margin: 1px; */
}

#contain {
  /* align-items: center; */
  /* border: 1px solid black; */
  margin: -10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-width: 80%;
}

.left-input {
  width: 60px;
}