body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  margin: 0;
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}
* {
  box-sizing: border-box;
  font-family: Trebuchet MS, Lucida Sans Unicode, Lucida Grande, Lucida Sans,
    Arial, sans-serif;
  margin: 0;
  padding: 0;
}
body {
  background-image: linear-gradient(-20deg, #b721ff, #21d4fd);
  background-repeat: no-repeat;
  height: 100vh;
}
.heading {
  margin-bottom: -50px !important;
  text-align: center;
}
.todo-app {
  background: #161a2b;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 128px auto;
  min-height: 600px;
  padding-bottom: 32px;
  text-align: center;
  width: 520px;
}
h1 {
  color: #fff;
  font-size: 24px;
  margin: 32px 0;
}
.complete {
  opacity: 0.4;
  text-decoration: line-through;
}
.todo-form {
  margin-bottom: 32px;
}
.todo-input {
  background: transparent;
  border: 2px solid #5d0cff;
  border-radius: 4px 0 0 4px;
  color: #fff;
  outline: none;
  padding: 14px 32px 14px 16px;
  width: 320px;
}
.todo-input::-webkit-input-placeholder {
  color: #e2e2e2;
}
.todo-input::placeholder {
  color: #e2e2e2;
}
.todo-button {
  background: linear-gradient(90deg, #5d0cff, #9b00fa);
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  outline: none;
  padding: 16px;
  text-transform: capitalize;
}
.todo-input.edit {
  border: 2px solid #149fff;
}
.todo-button.edit {
  background: linear-gradient(90deg, #149fff, #117aff);
  padding: 16px 22px;
}
.todo-container {
  display: flex;
  flex-direction: row;
  position: relative;
}
.todo-row {
  align-items: center;
  background: linear-gradient(90deg, #ff7614, #ff5411);
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin: 4px auto;
  padding: 16px;
  width: 90%;
}
.todo-row:nth-child(4n + 1) {
  background: linear-gradient(90deg, #5d0cff, #9b00fa);
}
.todo-row:nth-child(4n + 2) {
  background: linear-gradient(90deg, #ff0cf1, #fa0087);
}
.todo-row:nth-child(4n + 3) {
  background: linear-gradient(90deg, #149fff, #117aff);
}
.icons {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 24px;
}
.delete-icon {
  color: #fff;
  margin-right: 5px;
}
.edit-icon {
  color: #fff;
}
.delete-icon,
.edit-icon {
  display: inline-block;
  margin: 0 0.5rem;
}
/*# sourceMappingURL=main.a259626b.css.map*/
