*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sedgwick Ave', cursive;
  }
  /*encabezado*/
  header{
    text-align: center;
    height: 60px;
    /*color de fondo*/
    background-color:skyblue;
    overflow: auto;
  }
  header .tables{
    /*outline: 1px solid purple;*/
    height: 35px;
    width: 125px;
    float: left;
    margin-top: 12px;
    margin-left: 16px;
    font-size: 15px;
    border-radius: 8px;
    background-color: white;
    border: 2px solid black;
    border-style: dashed;
  }  
  .tables span {
      margin-top: 9px;
      display: block;
  }

  .search input {
    background: transparent;
    border: none;
    outline: none;
    width: 90px;
    margin-top: 9px
  }
  .icons-list {
    float: right;
    margin-top: 8px;
    margin-right: 15px;
    width: 250px;
  }

  .icons-list span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid black;
    border-style: dashed;
  }

  .trello {
      margin-top: 7px;
      display: inline-block;
  }

  main {
      background-image: url(../assets/images/coffee.gif);
      width: 100%;
      height: 600px;
      background-size: cover;
      background-repeat: no-repeat;
  }
  .container-list{
    /*outline: 1px solid black;*/
    height: 600px;
    width: 900px;
    margin-left: 50px;
    overflow: auto;
  }

  #input-list{
    background-color: skyblue;
    border: 4px solid #2c3e50;
    border-style: dashed;
    border-radius: 10px;
    padding: 10px;
    color: white;
    margin-left: 90px;
    margin-top: 10px;
    width: 200px;
    text-align: center;
    font-size: 20px;
  }

  #title-list{
    text-align: center;
    font-size: 20px;
    font-weight: bolder;
    margin-top: 8px;
    border-radius: 17px;
    margin-left: 25px;
    padding: 10px;
    border: 3px solid #2c3e50;
    border-style: double;
  }
  /*estilo al botón guardar*/
  #save-list{
    background-color: skyblue;
    border: 3px solid white;
    border: 4px solid #2c3e50;
    border-style: dashed;
    color:white;
    padding: 7px;
    border-radius: 5px;
    margin-top: 7px;
    font-size: 16px;
    margin-left: 120px;
  }

  .trelloList{
    float: right;
    width: 300px;
    height: 100px;
    border-radius: 8px;
    margin-right:200px;
  }
  


