*{
    font-family: 'Markazi Text', serif;
    direction: ltr;
  }
  body {
      font-family: 'Markazi Text', serif;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      height: 100%;
      padding: 0;
      margin: 0;
      font-size: 2em;
      box-sizing: border-box;
      background: #833ab4;
      background: #11998e;
      background: -webkit-linear-gradient(to right, #38ef7d, #11998e);
      background: linear-gradient(to right, #38ef7d, #11998e);
      color: #fff;
  }
  html {
    box-sizing: border-box;
    height: 100%;
  }
  a {
      text-decoration: none;
      color: #fff;
  }
  small {
    opacity: .;
    margin-top: 20px;
    display: block;
  }
  h1 {
    color: #fff;
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.6);
    text-align: center;
    margin-bottom: 0;
    font-size: 2em;
    line-height: 1.3em;
    font-weight: bold;
    margin-top: 0.67em;
  }
  .todo-list {
    padding-top: 10px;
    width: 400px;
  }
  .todo {
    background: #fff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    padding: 3px 10px;
    font-size: .7em;
    margin-bottom: 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
  }
  .todo-text {
    cursor: pointer;
  }
  .todo-completed {
    text-decoration: line-through;
  }
  button {
    border: 0;
    outline: 0;
    cursor: pointer;
    font-size: 18px;
  }
  .todo button {
    color: #f37070;
    background: transparent;
  }
  input {
      text-align: right;
      background: #fff;
      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
      padding: 7px 10px;
      font-size: .5em;
      color: #000;
      outline: 0;
      border: 0;
      flex: 1;
  }
  form {
    border-top: 1px solid;
    display: flex;
    padding-top: 10px;
    margin-top: 10px
  }
  form button {
      color: #2980B9;
      background: #fff;
      padding: 0 15px;
      border-radius: 4px 0 0 4px;
  }
  

