body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.app {
  background: purple;
  padding: 30px;
  max-height: 100%;
}

.todo-list{
  background: plum;
  border-radius: 4px;
  padding: 5px;
  max-width: 100%;
  
}

.todo{
  background: #fff;
  box-shadow: 1px 1px 1px rgba(0,0,0, 0.15);
  padding: 3px 10px;
  font-size: 24px;
  margin-bottom: 6px;
  border-radius: 3px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  color: purple;
  justify-content: center;
  position: relative;
}

.todo:active {
  top: 2px;
}

.todo:hover {
  cursor: pointer;
  color: red;
  bottom: 2px;
  font-weight: bolder;
}

.input{
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  padding: 1rem;
  height: 2.25em;
  font-size: 24px;
  color: cornflowerblue;
  background-color: lightpink;
}

.input:hover {
  background-color: peachpuff;
  
}

h2 {
  color: rgb(122, 109, 197);
  font-weight: bolder;
  font-size: x-large;
  font-style: italic;
  text-align: center;
}

h1 {
  color: rgb(207, 25, 153);
  font-weight: bolder;
  text-align: center;
}

