@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
body {
  margin: 0;
  background-color: #7d6b7d;
}

.container {
  margin: 0 auto;
  margin-top: 10px;
  width: 50vw;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ff665a;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 3px 3px 5px #7d6b7d;
          box-shadow: 3px 3px 5px #7d6b7d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
}

.container h1 {
  font-family: "Staatliches", cursive;
  letter-spacing: 8px;
  font-size: 40px;
  color: #fff587;
  margin: 0;
}

.container .td {
  padding: 10px 0;
  background-color: #ff665a;
}

.container .createnew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 70%;
}

.container .createnew > input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10%;
          flex: 0 1 10%;
  margin: 0.5rem;
}

.container .createnew > input[type="newTask"] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10%;
          flex: 1 1 10%;
}

.container input {
  border: none;
  background: #fff587;
  font-family: "Righteous", cursive;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.container input[type="submit"] {
  background: #ff8c64;
  color: #7d6b7d;
  -webkit-box-shadow: 1px 1px 5px #7d6b7d;
          box-shadow: 1px 1px 5px #7d6b7d;
}

.container input[type="submit"]:hover {
  background: #fff587;
}

.container input[type="button"] {
  background: #ff8c64;
  color: #7d6b7d;
  -webkit-box-shadow: 1px 1px 5px #7d6b7d;
          box-shadow: 1px 1px 5px #7d6b7d;
}

.container input[type="button"]:hover {
  background: #a3a1a8;
}

.listtask {
  margin: 0 auto;
  margin-top: 10px;
  width: 50vw;
  height: 10vh;
  background-color: #fff587;
  border-radius: 12px;
  -webkit-box-shadow: 1px 1px 5px #7d6b7d;
          box-shadow: 1px 1px 5px #7d6b7d;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.listtask .edittask {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 90%;
  gap: 10px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.listtask .edittask > input {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  height: 40px;
  font-size: 14px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0.5rem;
}

.listtask .edittask input {
  color: #ff8c64;
  border: none;
  background: #fff587;
  font-family: "Righteous", cursive;
  border-radius: 12px;
  padding: 0 1rem;
}

.listtask .edittask input[type="newTask"] {
  margin-left: -15px;
}

.listtask .edittask input[type="newTask"]::-webkit-input-placeholder {
  color: #ff8c64;
  opacity: 1;
}

.listtask .edittask input[type="newTask"]:-ms-input-placeholder {
  color: #ff8c64;
  opacity: 1;
}

.listtask .edittask input[type="newTask"]::-ms-input-placeholder {
  color: #ff8c64;
  opacity: 1;
}

.listtask .edittask input[type="newTask"]::placeholder {
  color: #ff8c64;
  opacity: 1;
}

.listtask .edittask input[value="Save"] {
  background: #fff587;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10%;
          flex: 0 1 10%;
  color: #7d6b7d;
  height: 40px;
  border: 2px solid #7d6b7d;
}

.listtask .edittask input[value="Save"]:hover {
  background: #ff8c64;
}

.listtask .edittask input[value="Discard"] {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10%;
          flex: 0 1 10%;
  background: #fff587;
  color: #7d6b7d;
  border: 2px solid #7d6b7d;
  height: 40px;
}

.listtask .edittask input[value="Discard"]:hover {
  background: #a3a1a8;
}

.note {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.note h3 {
  font-family: "Righteous", cursive;
  font-weight: 20;
  padding-left: 20px;
  letter-spacing: 2px;
  font-size: 14px;
  background-color: #fff587;
  color: #ff665a;
}

.icons {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  justify-self: flex-end;
  padding-left: 10px;
  background-color: #fff587;
}

.btn {
  width: 40px;
  position: relative;
  height: 40px;
  border: 2px solid #7d6b7d;
  border-radius: 12px;
  background-color: #fff587;
}

.btn img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn:hover {
  background-color: #ff8c64;
  -webkit-transition: 0.5 linear;
  transition: 0.5 linear;
}

@media screen and (max-width: 1280px) {
  .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .note {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}

@media screen and (max-width: 875px) {
  .container {
    width: 70vw;
  }
  .listtask {
    width: 70vw;
  }
}

@media screen and (max-width: 625px) {
  .td h1 {
    font-size: 30px;
  }
  .listtask .edittask input[type="newTask"] {
    width: 250px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }
  .listtask .edittask input[value="Discard"] {
    width: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    margin-left: -20px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .listtask .edittask input[value="Save"] {
    width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    margin-left: -20px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .edittask {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .createnew {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container {
    height: 30vh;
  }
}

@media screen and (max-width: 520px) {
  .container {
    width: 80vw;
  }
  .listtask {
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .edittask {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .note h3 {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */