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

body {
  background: #4e2a9b;
  background: linear-gradient(
    90deg,
    rgba(78, 42, 155, 1) 0%,
    rgba(164, 87, 199, 1) 50%,
    rgba(237, 83, 83, 1) 100%
  );
  color: #c8cae2;
  font-family: 'Montserrat';
}

.container {
  width: 50%;
  margin: 6rem auto;
}

h1 {
  color: white;
  margin-bottom: 2rem;
}

.create-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #25273c;
  border-radius: 10px;
  padding-right: 2rem;
}

input {
  width: 80%;
  background-color: #25273c;
  outline: none;
  border-radius: 10px;
  border: none;
  color: white;
  font-size: 21px;
  padding: 2rem;
}

input::placeholder {
  color: #c8cae2;
}

#btn-add {
  width: 20%;
  background-color: #25273c;
  color: #c8cae2;
  padding: 1.3rem;
  box-shadow: #c8cae2 0px 0px 0px 1px;
  border-radius: 4px;
}

#btn-add:hover,
#btn-del:hover {
  cursor: pointer;
  color: white;
  box-shadow: white 0px 0px 0px 1px;
}

#btn-del {
  width: 10%;
  background-color: #25273c;
  color: #c8cae2;
  width: 50px;
  height: 50px;
  box-shadow: #c8cae2 0px 0px 0px 1px;
  border-radius: 100%;
}

.tasks-container {
  display: none;
  width: 100%;
  margin-top: 2rem;
  background-color: #25273c;
  border-radius: 10px;
}
ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  font-size: 21px;
  border-bottom: 1px solid #383b4e;
}
