body{
  background-image: url(notes.jpeg.jpg);
  background-repeat:no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-position: center;
  
  }
.heading, .container{
  display: flex;
  justify-content:flex-start;
  margin-left: 40px; 
}

h1{
  font-size: 70px;
  color: white;
  text-shadow: #df888c 1px 0 10px;
} 

.field{
  padding: 5px;
  width: 300px;
  height: 40px;
  border: none;
  font-size: 25px;
  box-shadow: #df888c 1px 0 10px;
 
}
.btn{
  background-color: #53524f;
  padding: 5px;
  border: none;
  font-size: 25px;
  height: 50px;
  color: white;
  box-shadow: #df888c 1px 0 10px;
}


.taskContainer{
  display: flex;
  flex-direction:column;
  justify-content: flex-start;
  width: 300px;
 
}
.taskAdded{
list-style: none;
background: white;
padding: 5px;
height: 30px;
width: 300px;
text-align: center;
color: black;
font-size: 20px;
border-bottom: 1px solid #7a5656;

}
.taskCompleted{
  background-color: red;
  color: #e4d5d500;
  font-weight: bold;
  text-decoration: line-through;
  transition: all 2s ease;
} 

.mouseOn{
  box-shadow: white  1px 1px 10px ;
  transition: all 2s ease;
}

.mouseOff{
  background-color: #53524f;
  box-shadow: #df888c 1px 0 10px;
} 

@media all and (max-width: 820px){
  h1 {
    font-size: 50px;
  }


  .heading {
    justify-content: center;
    margin-left: 20px;
  }

}
@media all and (max-width: 500px){
  h1{
    font-size: 40px;
   align-self: center;
  }
  .btn{
    font-size: 20px;
  }
  .container{
    margin-right: 10%;
  } 
  .field, .taskAdded, .container{
    width: 210px;
  }
}