/* GLOBAL STYLES */

html {
    height: 100%;
  }
  
  body {
    margin: 0;
    font-family: "Hind", "Arial", "Helvetica", "sans-serif";
    height: 100%;
    background: #9575CD;
    color: #FFFFFF;
  }
  

  
  /* HEADER */
  header {
    padding: 20px 0 10px 0;
    background: #4527A0;
    text-align: center;
  }
  

  header > h1 {
    margin: 0;
    padding-bottom: 0;
    font-size: 3.49rem;
    font-weight: 300;
  }
  
  /* sección main */
  main {
    margin: 0 auto;
    max-width: 20em;
    padding-top: 30px;
  }
  
  /* Input and "add" button */
  input {
    margin-right:2px;
    padding-left: 10px;
    height: 44px;
    width: 66.6666%;
    border: none;
    color: rgba(0, 0, 0, 0.87);
    font-size: 1.3rem;
  
  }
  
  input::placeholder {
    color: rgba(0, 0, 0, 0.38);
  }
  
  input:focus {
    outline: none;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
  }
  
  button {
    /* float: right; */
    height: 46px;
    width: 27.33333%;
    background: #FFC107;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
    border: none;
    font-size: 1.3rem;
    color: #fff;
  }
  
  input, button{
    margin-bottom: 16px;
  }
  
  /* List, list items, and list item buttons */
  
  .list {
    padding: 0;
    list-style-type: none;
  }
  
  .list__item {
    font-size: 1.3rem;
    width: 300px;
    height: 30px;
    padding: 10px;
    text-align: center;
  }
  
  .list__item:nth-child(odd) {
    background: #673AB7;
  }
  
  .list__item:nth-child(even) {
    background: #4527A0;
  }
  
  .list__delete-btn {
    cursor: pointer;
    float: left;
    margin: -5px;
    padding: 5px 9px;
  }
  
  .list__check-btn {
    cursor: pointer;
    float: right;
    margin: -5px;
    padding: 4px 8px;
  }
  
  /* Checked-off item list formatting */
  
  /* (Increased specificity to override the even/odd psuedoclasses) */
  .list .list__item--checked {
    background: #D1C4E9;
    color: rgba(0, 0, 0, 0.38);
    text-decoration: line-through;
  }
  
 
  