body {
    background:#f0e7e0;
    font-family: sofia-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
    color:#545;

  }
  h1 {
    font-family: henriette, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: orange;
    padding-bottom: 30px;
  }
  h3 {
    padding: 1em 0px;
  }
  p {
    font-family: sofia-pro, sans-serif;
    color:#545;
    padding-bottom: 2em;
  }
  .bild{
    width:100%;
  }
  
  * {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
  }
  
  .main-section {
    background: transparent;
    max-width: 500px;
    width: 90%;
    height: 500px;
    margin: 30px auto;
    border-radius: 10px;
  }
  
  .add-section {
    width: 100%;
    background: #fff;
    margin: 0px auto;
    padding: 10px;
    padding-bottom:20px;
    border-radius: 5px;
    margin-bottom:20px;
  }
  
  .add-section input, #comments textarea{
    display: block;
    width: 95%;
    height: 40px;
    margin: 10px auto;
    border: 2px solid #ccc;
    font-size: 16px;
    border-radius: 5px;
    padding: 0px 5px;
    font-family: sofia-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  #comments textarea {
      min-height: 140px;
      resize: vertical; 
 
  }
  
  .add-section button {
    display: block;
    width: 95%;
    height: 40px;
    margin: 0px auto;
    border: none;
    outline: none;
    background: #6c8aa3;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: sofia-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .add-section button:hover {
    box-shadow: 0 2px 2px 0 #ccc, 0 2px 3px 0 #ccc;
    opacity: 0.7;
  }
  
  .add-section button span {
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    width: 18px;
    height: 18px;
  }
  
  #errorMes {
    display: block;
    background: #f2dede;
    width: 95%;
    margin: 0px auto;
    color: rgb(139, 19, 19);
    padding: 10px;
    height: 35px;
  }
  
  .show-todo-section {
    width: 100%;
    margin: 30px auto;
    padding: 0px;
    border-radius: 5px;
  }
  
  .item {
    width: 100%;
    border-radius: 5px;
    padding-left: 1em;
    padding-bottom: 0.3em;
    padding-top:0.3em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: white;
    margin-bottom: 4px;
  
  }
  
  .item h2 {
    display: inline-block;
    padding: 0px 0px;
    font-size: 16px;
    padding-right: 1em;
    color: #555;
  }
  
  .item p{
    display: block;
    padding: 0px;
    font-size: 16px;
    flex-grow: 2;
    color: #555;
    padding-right: 0.5em;
  }
 .item .mynum{
   display: none;
 }
  .remove-name {
    display: inline;
    float: right;
    width: auto;
    margin-top:-6px;
    font-size: 1.4em;
    color:#555;    text-decoration: none;
    text-align: right;
    padding: 0px;
    padding-right:0.5em;
    border-radius: 0%;
    transition: color 0.3s;
    cursor: pointer;
    
  }
  
  .remove-name:hover {
    color: red;
  }
  
  
  .item input {
    margin: 0px 5px;
  }
  
  .empty {

    font-size: 16px;
    text-align: center;
    color: #cccc;
  }

