body {
    font-family: cursive;
    font-size: 16px;
    line-height: 1;
    background-color: cadetblue;
  }
  
  textarea{
    background: transparent;
    border: none;
    resize: none;
    color: #000000;
    padding: 10px;
  }
  
  .jumbotron {
    text-align: center;
    background-color: transparent;
    color: black;
    border-radius: 0;
    border-bottom: 10px solid black;
  }
  
  .task {
    white-space: pre-wrap;
  }
  
  .timeBlock{
    text-align: center;
    border-radius: 15px;
    background-color: #eedddd;
    border-width: .5rem;
    border-color: rosybrown;
  }
  
  .row {
    white-space: pre-wrap;
    height: 80px;
    border-top: 1px solid white;;
    justify-content: space-between;
  }
  
  .hour {
    background-color: #ffffbe;
    color: #000000;
    border-top: 2px dashed #000000;
    border-bottom: 2px dashed #000000;
    padding-top: 1rem;

  }
  
  span {
    text-align: center;
  }

  .footer {
    font-size: large;
    font-weight: 400;
    text-align: center;
    padding-top: 2rem;
  }
  .past {
    background-color: #ff6961;
    color: white;
  }
  
  .present {
    background-color: #122fd8;
    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: #06AFF3;
    color: white;
    
  }
  
  .saveBtn i:hover {
    font-size: 20px;
    transition: all .3s ease-in-out;
  }
  