@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 300ms;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 100vh;

  padding: 40px 0;
  padding-bottom: 120px;

  color: white;
  font-family: "Poppins";

  background: #22223b;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

#fazer {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */

  max-width: 350px;
  width: 100%;

  padding: 15px 20px;

  border: solid 2px #9a8c98;
  border-radius: 10px;

  background: #4a4e69;
}

.tarefa {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;

  margin: 2px 0;
  padding: 10px;
  /* padding-right: 0; */

  border: solid 2px #f2e9e4;
  border-radius: 10px;

  color: #252525;
  background: #c9ada7;
}

.tarefa input[type="checkbox"] {
  accent-color: #4a4e69;
}

.tarefa.concluida {
  text-decoration: line-through;
  opacity: 0.6;
}

.tarefa p {
  flex: 1;
  cursor: pointer;
  font-size: 16px;
}

.tarefa i {
  cursor: pointer;
  display: none;
  color: white;
  transform: scale(1.5);
  text-shadow: 1px 1px 2px #252525;
}

.tarefa:hover i {
  display: block;
}

.texto-concluidas {
  margin: 20px 40px;
  margin-bottom: 10px;
  border-bottom: 2px solid #9a8c98;

  color: #c9ada7;
  text-align: center;
}

.nenhuma-tarefa {
  font-size: 20px;
  text-align: center;
}

#adicionar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;

  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;

  border: solid 2px #9a8c98;
  border-radius: 10px;

  background-color: #4a4e69;
}

#adicionar input {
  flex: 1;
  width: 100%;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  outline: 0;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 300;
}

#adicionar button {
  cursor: pointer;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  outline: 0;
  color: #252525;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: bold;
  background-color: #c9ada7;

  transition: color 100ms, background 300ms;
}

#adicionar button:hover {
  color: #fff;
  background-color: #9a8c98;
}

/* EFEITOS */

.sumindo {
  transform: scale(0);
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .tarefa i {
    display: block;
  }
}
