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;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  background: #0f0022;
  color: #f7f7f7;
  font-family: Roboto, sans-serif;
  min-height: 100vh;
  padding: 50px;
  text-rendering: optimizeSpeed;
}
.App {
  background: #2c2c2c;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 50%;
  padding: 1rem;
  text-align: center;
}
h1 {
  color: #44c0b6;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
.input-wrapper {
  margin: 3.5rem;
}
.todos-wrapper {
  margin-bottom: 2.5rem;
}
.todo {
  align-items: flex-start;
  display: flex;
  justify-content: center;
}
input {
  padding: 0.8em;
  width: 350px;
}
input:focus {
  outline: none;
}
button {
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 0.8em;
  width: 120px;
}
button,
input {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #828691;
  color: currentcolor;
  font-size: 1em;
}
.add-button {
  border: none;
  color: #44c0b6;
}
.delete-button {
  border: none;
  color: #fe6a6a;
}
ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
li {
  background: #494847;
  border-left: 5px solid #cf972e;
  height: 46.6px;
  letter-spacing: 0.02rem;
  margin-bottom: 0.5rem;
  padding: 0.85em;
  text-align: left;
  transition: all 0.3s ease-out;
  width: 450px;
}
li:last-child {
  margin-bottom: 0;
}
.empty {
  color: #cf972e;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
/*# sourceMappingURL=main.a73314b8.css.map*/
