#container {
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    margin: 200px auto;
    background: #f7f7f7;
    width: 360px;
}
h1 {
    background: #c31432;
    color: white;
    margin: 0;
    padding: 10px 20px;
    text-transform: uppercase ;
    font-size: 24px;
    font-weight: normal;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #c31432;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #240b36, #c31432); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.fa-pencil-alt {
    float: right;
}
span {
    background:#e74c3c;
    margin-right: 20px;
    height: 40px;
    text-align: center;
    color: white;
    width: 0;
    display:inline-block;
    transition: 0.3s linear;
    opacity: 0;
}
li:hover span {
    width: 40px;
    opacity: 1;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
input {
    font-size: 18px;
    color: #c31432;
    background: #f7f7f7;
    width: 100%;
    padding: 13px 13px 13px 20px;
    box-sizing: border-box;
    border: none;
}
input:focus {
    background: white;
    border: 3px solid #c31432;
    outline: none;
}
li {
    background: white;
    height: 40px;
    line-height: 40px;
    color: #0b8383;
}
li:nth-child(2n){
    background: #f7f7f7;
}