body {
  font-family: "Poppins", system-ui;
  background-image: url("../images/bg-app.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  margin-bottom: 20px;
}

#task-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.completed {
  text-decoration: line-through;
  color: #70cc85;
}

button {
  cursor: pointer;
  margin: 10px;
  color: black;
}

h2 {
  color: #333;
}
p {
  color: black;
  font-size: 20px;
  font-weight: bolder;
}
span {
  font-size: 18px;
  font-weight: bold;
}
.back-home {
  text-decoration: none;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}
.back-home:hover {
  background-color: #0056b3;
}

#status {
  width: 90px;
}

#request-permission {
  background-color: #ffc107;
  color: #000;
  border-radius: 20px;
  border: none;
  display: inline-flex;
}

#show-notification {
  background-color: #ffc107;
  color: #000;
  border-radius: 20px;
  border: none;
  display: inline-flex;
}

.container-notif{
  display: flex;
  justify-content: center;
}