

body{
    background-color: #4b3c74;
    font: normal 15pt Arial;    
}

.container{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,.16);
    width: 450px;
    height: 85vh;
    border-radius: 10px;
    text-align: center;
   
}

@media(max-width: 600px){
    .container{
        width: 320px;
    }   
}

.header{
    background:#2ab1f0;
    height: 150px;
    background-size: cover;
    background-position: 10% 20%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    margin-bottom: 20px;
}
h1, h2{
    padding: 12px 0;
    margin: 0;
    color: #fff;
  
}
.add-elements{
    margin: 15px 0;
    
}
input{
    padding: 6px 4px;
    width: 70%;
    border: none;
    border-radius: 10px;
    height: 20px;
}
::placeholder{
    font-size: 18px;
    padding: 0 10px;
}

i#add{
    color: #2ab1f0;
    size: 30px;
    cursor: pointer;
}
i#add:hover{
    color: #1565c0;
}
#list{
    
    overflow-y: scroll;
    height: 45vh;
}
.elements{
    height: 100px;
}
ul{
    padding: 0;
   
}
li{
    list-style: none;
    padding: 5px 15px;
    font-size: 17px;
    background-color: #fff;
    margin: 12px 43px;
    box-shadow: 0 2px 8px rgba(0,0,0,.16);
    border-radius: 10px;
    transition: .4s;
    text-align: left;
    color: #444;
    font-size: 16px;
}
.elements i{
    color: #444;
    float: right;
    cursor: pointer;
}

.elements i:hover{
    color: rgb(209, 49, 81);
}

/* .elements i#edit{
    color: #444;
    float: right;
    padding-right: 10px;
    cursor: pointer;
} */

/* .elements i#edit:hover{
    color: rgb(49, 209, 116);
} */

label{
    cursor: pointer;
}


li:hover{
    background-color: #e0e0e0;
}

.checked{
    text-decoration: line-through;
    background-color: #e0e0e0;
}

/* drag and drop */
.over {
    transform: scale(1.1, 1.1);
  }
