*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;;
}

body{
    height: 100dvh;
    width: 100vw;
    overflow-x: hidden;
    /* background: #0f1220; */
    background: linear-gradient(180deg, #0f1220 0%, #241734 100%) no-repeat center/cover;
    /* overflow-y: hidden; */
    color: salmon;
}

::-webkit-scrollbar{
    width: 10px;
    height: 200px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb{
    width: 10px;
    border-radius: 5px;
    background-color: salmon;
}


ul{
    list-style: none;

}

li{
    background: rgba(255, 255, 255, 0.1);
    padding: .5rem;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease-in-out;
    border-radius: 10px;
}

.button-box{
    width:20%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 7px;
}

.button-box button{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    transition: all 300ms ease;
}

.button-box button:hover{
    opacity: .7;
    scale: .95;
}

.doneBtn{
    background: salmon;
}

.deleteBtn{
    background: #b61c11;
}

.done{
    opacity: .5;
}

.list-container{
    width: 35%;
    height: 90%;
    background: #161925;
    margin: 40px auto;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-shadow: 5px 5px 18px 1px #000000; 
    box-shadow: 5px 5px 18px 1px #000000;
}

#task-container{
    height: 80%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    overflow-y: scroll;
    margin-bottom: 10px;
    background: rgba(85, 85, 85, 0.092);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    padding: .5rem;
    box-shadow: inset 0 0 5px rgb(0, 0, 0);
}

form{
    margin-left: 5px;
    height: 5%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

input{
    width: 85%;
    border: none;
    border-radius: 5px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    padding: .2rem;
    font-size: 22px;
    color: white;

}

form button{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border:none;
    background: salmon;
    font-size: larger;
    margin-left: 10px;
}

@media (max-width: 800px){
    .list-container{
        width: 95%;
    }

}