/* Body styling Google font Fjalla */

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

/* Jumbotron */

.jumbotron {
  text-align: center;
  text-shadow: 1px 1px darkgoldenrod;
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-radius: 0;
  border-right: 1px solid rgb(228, 186, 17);
  border-left: 1px solid rgb(228, 186, 17);
  border-bottom: 1px solid rgb(228, 186, 17);
  border-top: 1px solid rgb(228, 186, 17);
}

.jumboHeaderImg {
  background-image: url("assets/sunflower.png");
  background-size: cover;
  }

.subTitle {
  color: white;
  text-shadow: 1px 1px darkgoldenrod;
  font-size: 30px;
}

.dateToday {
  color: white;
  text-shadow: 1px 1px darkgoldenrod;
  font-style: italic;
}

/* Styling <p> element */

p {
  padding-top: 15px;
  text-align: center;
  color: rgb(228, 186, 17);
}

/* Styling form text area */

textarea{
  background: transparent;
  border: none;
  resize: none;
  color: rgb(72, 72, 72);
  padding: 10px;
}

#container {
  border-radius: 1px;  
}

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

/* Styling time-blocks */

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

.row {
  /* white-space: pre-wrap; */
  height: 80px;
 }

.hour {
  background-color: #ffffff;
  color: rgb(228, 186, 17);
  border-radius: 15px;
  padding-top: 10px;
  margin-left: 10px;
 }

/* Styling color for past, present and future in time-blocks */

.past {
  background-color: #d3d3d3;
  opacity: 90%;
  color: rgb(72, 72, 72);
}

.present {
  background-color: #ff6961;
  opacity: 90%;
  color: rgb(72, 72, 72);
}

.future {
  background-color: #77dd77;
  opacity: 90%;
  color: rgb(72, 72, 72);
}

/* Button styling */

.saveBtn {
  border-left: 1px solid rgb(228, 186, 17);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

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

/* On screens that are 400px wide or less */

@media (max-width: 400px) {
   
  textarea {
    font-size: 10px;
  } 

  p {
    font-size: 10px;
    width: 30px;

  }

  .hour {
    font-size: 8px;
    margin-left: 0px;
    width: 30px;
  }

}

/* On screens that are between 401px and 720px wide */

@media screen and (max-width: 740px) {    

  .display-4 {
    font-size: 35px;
  }

  .subTitle {
    color: white;
    font-size: 16px;
  }
  
  .dateToday {
    color: white;
    font-style: italic;
    font-size: 14px;
  }

  .hour {
    padding-left: 10px;
    width: 40px;
  }

  p {
    font-size: 10px;
    width: 40px;
  }
  
  div {
    font-size: 10px;
    padding-left: 20px;
    padding-right: 0px;
  }

  .form-control {
    font-size: 10px;
    max-width: 100%;
  }

  .saveBtn {
    font-size: 1em;
    max-width: 100%;
    
  }
}

/* On screens between 740px and 1500px */

@media screen and (min-width: 740px) and (max-width: 1500px) {
  
  div {
    font-size: 14px;
  }

  textarea {
    font-size: 12px;
  }

  .form-control {
    max-width: 100%;
  }  

  .hour {
    margin-left: 30px;
  }
}