body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* Body light or darker themes */
.standard {
  background-image: linear-gradient(100deg, #575656, #062e3f);
  color: #ffdfdb;
  transition: 0.3s linear;
  overflow: hidden;
}

.light {
  background-image: linear-gradient(100deg, #d4f1ff, #ffffff);
  color: #1a150e;
  transition: 0.3s linear;
}

.darker {
  background-image: linear-gradient(100deg, #001214, #001f29);
  color: white;
  transition: 0.3s linear;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 47px;
}

form {
  display: flex;
  font-size: 1.7rem;
  justify-content: center;
  margin: 15px 0;
  padding: 0.8rem;
  width: 100%;
}
form input {
  padding: 20px;
  font-size: 27px;
  border: none;
  outline: none;
  /* border-radius: 15; */
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;

  transition: background-color 200ms ease-in-out;
  width: 100%;
}
button {
  padding: 20px;
  margin: 10px;
  font-size: 27px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  align-self: auto;
}

/* Theme buttons div */
.flexrow-container {
  margin-right: 40%;
}

.theme-selector {
  border: 1px solid #d1dae3;
  border-radius: 100%;
  height: 35px;
  margin: 0 12px;
  transition: tranform 150ms ease-in-out, box-shadow 200ms ease-in-out;
  width: 35px;
}

.theme-selector:hover {
  box-shadow: white 0 0 8px;
  cursor: pointer;
}

.theme-selector:active {
  transform: scale(0.95);
}

/* Input themes */
form input.standard-input {
  background-color: #181a1a;
  color: rgb(247, 226, 223);
  width: 100%;
}

.standard-theme {
  background-image: linear-gradient(100deg, #575656, #062e3f);
}

.light-theme {
  background-image: linear-gradient(100deg, #d4f1ff, #ffffff);
}

.darker-theme {
  background-image: linear-gradient(100deg, #001214, #001f29);
}

form input.light-input {
  background-color: #c9e3fc;
  color: #1a150e;
  width: 100%;
}

form input.light-input::placeholder {
  color: #241602;
  opacity: 0.7;
}

form input.darker-input {
  background-color: #01394c;
  color: white;
  width: 100%;
}

form input.darker-input::placeholder {
  color: white;
  opacity: 0.7;
}

form:hover {
  cursor: text;
}

form input.standard-input:hover {
  background-color: rgb(0, 0, 0);
}

form input.light-input:hover {
  background-color: #6caed4;
}

form input.darker-input:hover {
  background-color: #013141;
}

button {
  border: none;
  outline: none;
  transition: box-shadow 200ms ease, background-color 200ms ease-in-out;
}

button:hover {
  cursor: pointer;
}
.bi bi-trash-fill {
  font-size: large;
}
/* Button themes */
button.standard-button {
  background-color: rgb(247, 226, 223);
  color: rgb(0, 0, 0);
}

button.standard-button:hover {
  background-color: rgb(126, 116, 116);
  box-shadow: #fff8 0 0 10px;
}

button.light-button {
  background-color: rgb(209, 195, 195);
  color: #1a150e;
}

button.light-button:hover {
  background-color: #f0f0f0;
}

button.darker-button {
  background-color: #002837;
  color: white;
}

button.darker-button:hover {
  background-color: #001f29;
}

#myUnOrdList {
  display: flex;
  justify-content: center;
  align-items: center;
}

.todo {
  margin: 2rem;
  /* background: rgb(247, 226, 223); */
  /* color: black; */
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 0.5em;
  border-radius: 20px;
  transition: background-color 200ms ease-in-out;

}
.check-btn,
.delete-btn {
  font-size: 7px;
  cursor: pointer;
  width: 2em;
  height: 2em;
  border-radius: 90%;
  margin: 0 5px;
}

.todo-item {
  padding: 0rem 0.5rem;
}

.fa-trash,
.fa-check {
  pointer-events: none;
}

.completed {
  transition: 0.2s;
  text-decoration: line-through;
  opacity: 0.5;
}

/* Items themes */
.standard-todo {
  background-color: rgb(194, 201, 201);
  color: white;
}

.light-todo {
  background-color: #aeb1b4;
}

.darker-todo {
  background-color: #01394c;
}
