html, body{
    margin: 0;
    padding: 0;
}

body{
    background-color: #111111;
    font-family: 'Roboto', sans-serif;
}


/* list container */
.todosContainer{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 50px;
}

.task{ 
    height: 100px;
    max-width: 50%;
    width: 100%;
    background-color: #D9D9D9;
    border-radius: 20px;
    box-sizing: border-box;
    margin-top: 60px;
    padding-left: 35px;
    text-align: left;
    vertical-align: middle;
    line-height: 100px;
    box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
}

.task .fa-circle-xmark{
    padding-left: 5px;
    cursor: pointer;
}

.mainInput{
    max-width: 50%;
    height: 75px;
    padding: 100px;
    width: 700px;
    border: 1px solid #a9a9a9;
    border-radius: 20px;
    background-color: transparent;
    box-sizing: border-box;
    padding: 0;
    padding: 5px;
    background-clip: content-box;
    margin-top: 50px;
    color: #a9a9a9;
    padding-left: 35px;
    margin: 0 auto;
    margin-top: 5em;
    font-size: 1em;
    box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 11px 16px -3px rgba(0,0,0,0.75);
    outline: none;
}



.container{
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100px;
    margin-top: 40px;
}

img{
    position: absolute;
    left: 25%;
    top:3.5%;
    width: 100px;
    height: 100px;
}

.fa-plus{
    color:  #413F42;
    position: absolute;
    left: 70.5%;
    margin-top: 80px;
    cursor: pointer;
}

.fa-trash{
    color: #413F42;
    position: absolute;
    left: 70.5%;
    top: 8.5%;
    font-size: 1.5em;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .mainInput {
        padding: 50px;
    }}
