body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 1em;

  font-family: "Trebuchet MS";
  background-color: rgb(12, 84, 133);
  padding-inline: 2;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 10em;
  background: rgba(0, 109, 182, 0.733);
  border-radius: 0.25rem;
  box-shadow: 0.055rem 0.055rem 0.48rem rgba(0, 0, 0, 0.568);
}
h1 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-block: 0.75rem;
  padding-inline: 0.25em;
  text-shadow: 0.125rem 0.125rem 0.0125em rgba(0, 0, 0, 0.301);
}
h2 {
  margin-top: 0;
  color: lightgoldenrodyellow;
  text-shadow: 0.5rem 0.5rem 0.48rem rgba(0, 0, 0, 0.568);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
#myInput {
  font-weight: bolder;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 5px;
  position: relative;
}
#myInput input {
  border: none;none;
  appearance: none;
  background: #f2f2f2;
  border-radius: 3px;
  width: 250px;
  outline: none;
  font-size: 14px;
}
::placeholder {
  position: absolute;
  top: calc(70% + 10px);
  transform: translateY(-70%);
  transition: top 1.6s ease, color 3s ease, font-size 2s ease;
}
.container > input {
  font-family: "Trebuchet MS";
  font-weight: bold;
  margin: 0.3em;
  font-size: 1.1em;
  background-color: rgb(255, 255, 255);
  border: none;
  text-align: right;
  padding: 0.45rem;
  color: rgb(0, 0, 0);
  border-radius: 0.75em;
  box-shadow: 0.055rem 0.055rem 0.48rem rgba(0, 0, 0, 0.26);
  min-width: 275px;
}
.submit {
  font-size: 1.4rem;
  color: rgb(13, 178, 255);
}
.clearAll {
  font-size: 1.35rem;
  color: rgb(248, 152, 9);
}
.submit,
.clearAll {
  align-self: flex-end;
  border: none;
  width: 125px;
  font-weight: bolder;
  background-color: rgb(240, 240, 240);
  margin-top: 0.25rem;
  margin-bottom: 0.34rem;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  box-shadow: 0.01em 0.1em 0em rgba(0, 0, 0, 0.568);
}
ul {
  flex-direction: column;
  padding: 0;
  padding-inline: 12%;
  min-width: 1em;
  max-width: 2000px;
}
li {
  display: flex;
  align-items: start;
  margin-block: 5px;
  list-style-type: none;
  background: rgba(255, 255, 255, 0.664);
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.568);
  border-radius: 0.25rem;
  padding: 0;
  max-width: 3000px;

  justify-content: start;
  align-items: center;
}
.delete {
  margin-right: auto;
}
.checkmark {
  margin-left: 0.25em;
}
.checkmark,
.delete {
  display: flex;
  margin-block: auto;
  background-color: transparent;
  border: none;
  padding: 0.25em;
  min-width: 2.125rem;
}
.checkmark > img,
.delete > img {
  display: block;

  max-width: 100%;
  height: 3.2rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: flex-end;
}
.textDateDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 500px;
}
.todoText {
  text-align: left;
  max-width: 24ch;
  font-family: "Trebuchet MS";
  font-size: 1.3em;
  color: rgb(255, 255, 255);
  background-color: transparent;
  padding-left: .05em;
  border: none;
  text-overflow: auto;
  white-space: wrap;
  overflow: auto;
  overflow-wrap: break-word;
  word-break: break-all;
}
.todoText.completed,
.dateSelector.completed {
  text-decoration: line-through;
  color: rgba(103, 106, 109, 0.753);
}
.dateSelector {
  max-height: 100%;
  font-family: "Trebuchet MS";
  font-size: 1.1rem;
  font-weight: bold;
  background-color: transparent;
  border: none;
  text-align: left;
  color: rgb(0, 0, 0);
  padding-left: 16px;
  padding-right: 16px;
  margin-inline: auto;
}
.liDiv {
  display: flex;
  margin-left: auto;
}
