body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.app {
  max-width: 400px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  
}

button {
  padding: 6px 10px;
  margin-left: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #ddd;
}

.task {
  padding: 8px;
  margin-top: 8px;
  background: #f9f9f9;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taskdone {
  padding: 8px;
  margin-top: 8px;
  background: #f9f9f9;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
}

.taskButtons{
  display: flex;
}

@media (max-width: 500px) {
  input,
  button {
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
  .filters{
    display: flex;
    justify-content: space-evenly;
  }


  #inputFeild{
  display: flex;
  }
}