body{
    padding: 0;
    margin: 20px;
    background-color: rgb(131, 188, 246);
}

#container{
    margin: 0 auto;
    padding: 10px;
    width: 60%;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    background-color: white;
}
#heading{
    margin: 0 auto;
}
#maincontent{
    display: flex;
    flex-direction: row;
}

#categories{
    position: relative;
    display: flex;
    flex-direction: column;
}

#showAllCategory{
    position: absolute;
    bottom: 20px;
    background-color: dodgerblue;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 5px;
    align-self: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#categories h2{
    text-align: center;
}


#categorieslist li{
    width: 80%;
    list-style-type: none;
    padding: 5px;
    margin: 5px ;
    border-radius: 5px;
    background-color: rgb(131, 188, 246);
}

#categories, #tasks{
    padding: 10px;
    margin: 10px;
    background-color: white;
    width: 50%;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    
}
#top{
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
#top1, #top2{
    position: relative;
    margin: 5px;
}

#top1 button, #top2 button{
    position: absolute;
    right: 20px;
    background-color: dodgerblue;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#top1 input, #top2 input{
    background-color: rgba(30, 143, 255, 0.253);
    border-radius: 5px;
    border: none;
    padding: 5px;
}
textarea:focus, input:focus{
    outline: none;
}


#notes ul li{
    cursor: pointer;
    list-style-type: disc;
    border-bottom: 1px solid black;
    width: 50%;
    background-color: rgb(181, 214, 247);
    margin-bottom: 5px;
    text-align: center;
}
textarea{
    width:25vw;
    margin: 10px;
    border: 1px solid dodgerblue;
}
#bottom{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#bottom button{
    background-color: dodgerblue;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 5px;
    margin-right:20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}