body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Finger Paint', cursive; */
  font-family: 'Cinzel', serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #2b678f;
  /* centering list */
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 7rem;
  color: #f4d5ab;
  font-style: normal;
  text-decoration: underline;
  margin-bottom: auto;
}

code {
font-family: 'Finger Paint', cursive;
}

.app {
  background: #b9dff8;
  padding: 1rem;
  height: 100%;
  border-radius: 4px;
  /* width: 100%; */
  margin: 4% auto;
}

.todo-list{
  background: #e8e8e8;
  border-radius: 4px;
  padding: 4px;
  /* max-width: 400px; */
}

.todo{
  background: #f4d5ab;
  box-shadow: 1px 1px 1px rgba(0,0,0, 0.15);
  padding: 3px 10px;
  font-size: 3rem;
  font-family: 'Finger Paint', cursive;
  margin-bottom: 6px;
  border-radius: 3px;
  display:flex;
  align-items: center;
  justify-content: space-between;
}

.input{
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  padding: 1rem;
  height: 2.25em;
  font-size: 3rem;
  font-family: 'Finger Paint', cursive;
}

.input:hover {
  cursor: pointer;
}

.todo:hover {
  cursor: pointer;
}

.todo:last-of-type {
  margin-bottom: 1%;
}

form input{
  font-size: 1rem;
}

/* PHONE */
/* @media only screen and (max-width: 375px) {

  .input,
  .todo {
    font-size: 2rem;
}

} */