html, body {
    height: 100%;
    margin: 0;
}


body {
    background-image: url("ToDoBackground.jpg");
    background-repeat: repeat;
    background-size: auto;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* App container */



.app-container {
    max-width: 650px;
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 62px rgba(0,0,0,0.1);
}

.app-container h3 {
    margin: 0 0 25px;
}

/* New task */
.new-task-container {
    margin-bottom: 20px;
}

/*tasks list */
.tasks-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-task {
    margin-bottom: 12px;
}


/* Date */

p {
    font-size: 16px;
    text-align: center;
    white-space: pre-wrap;
}

#currentDate {
    font-size: 18px;
}

#choosenDate {
    font-size: 18px;
}

.display-date {
    padding: 5px;
    margin: 15px;
}

.date-container {
    padding: 5px;
    margin: 10px;
}

.progress-container {
    margin-top: 10px;
    width: 100%;
    height: 8px;
    background: #ccc;
  }
  
  .progress-bar {
    margin-top: 10px;
    height: 8px;
    background: #4caf50;
    width: 0%;
  }
  

  .content {
    padding: 30px 0;
    margin: 0 auto 0 auto;
    width: 100%;
  }


  

