#main-container {
  margin: 20px;
}
body {
  background-color: #151d26;
}
.text-input {
  height: 30px;
  color: white;
  background-color: transparent;
  font-family: monospace;
  font-size: 25px;
  width: 100%;
  resize: none;
  border: none;
}
.text-input:focus {
  outline: none;
}
.toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 30px;
  height: 30px;
  margin: 5px;
  background-color: transparent;
  border: none;
  transition: 0.2s all;
  filter: invert(1);
}
.toggle:hover {
  text-shadow: 0 0 15px black;
  transition: 0.2s all;
}
.list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  animation: bounceIn;
  animation-duration: 750ms;
  animation-fill-mode: backwards;
}
.is-checked {
  > .text-input {
    text-decoration: line-through;
    color: gray;
  }
}
.is-delete {
  > .text-input {
    animation: shake;
    animation-duration: 750ms;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
}
.large-button {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  margin: 5px;
  border: 2px solid #9effe2;
  border-radius: 10px;
  font-family: monospace;
  font-size: 25px;
  user-select: none;
  background-color: #181818;
  color: white;
  transition: all 0.2s;
}
.large-button:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 15px #9effe2;
  transition: all 0.2s;
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 30px;
  height: 30px;
  background-color: transparent;
}
@keyframes shake {
  0% {
    transform: translateX(4px);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-4px);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  40% {
    opacity: 1;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  75% {
    opacity: 1;
    transform: translateY(0);
  }
}