body{
    background-color: rgb(5, 5, 5);
    color:white;
    font-family:'Courier New', Courier, monospace;
    margin:0;
}
main{
    display: flex;
    margin-inline: auto;
    margin-block: 50px;
    flex-direction: column;
    padding:10px;
    width: 50vw;
    padding:5px;
    background-color: rgb(0, 0, 0);
    border-radius: 15px;
}
header{
    background-color: rgb(0, 0, 0);
    border-block-end: 1px solid rgb(50,50,50);
    padding:15px;
    font-size: 30px;
    text-align: center;
}
ul{
    
    list-style: none;
    padding:0;
    margin:0;
    border-radius: 5px;
}
li{
    background-color: rgb(15,15,15);
    margin:1px;
    border-radius: 5px;
}
.divTask{
    padding:5px;
    display: flex;
    flex-direction: row;
    cursor:pointer;
    align-items: center;
    margin:0;
    height: min-content;
    background-color: rgb(30,30,30);
    border-radius: 5px;
    transition:0.1s;
}
.divTask:hover{
    background-color: rgb(45,45,45);
}
.divTask strong{
    align-content: center;
    padding:0;
    margin:0;
}
.divDesc pre{
    margin:0;
    padding:5px;
    align-content: center;
    height: min-content;
}
.divAux{
    display:flex;
    margin:0;
    padding:0;
    margin-left: auto;
    align-content: center;
}
.divTask button {
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background-color: rgb(200, 200, 200);
    border:2px solid rgb(0, 0, 0);
    cursor:pointer;
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
    margin-inline-start:5px;
}
.btnCheck{
    margin:0;
    appearance: none;
    padding:0;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    margin-inline-end: 5px;
    background-color: rgb(200, 200, 200);
    border:2px solid rgb(0, 0, 0);
    display: grid;
    cursor:pointer;
    transition:0.3s;
    background-repeat: no-repeat;
    background-image: none;
    background-size: 75%;
    background-position: center;
}
.btnCheck:hover{
    transform:scale(1.1);
    background-size: 80%;
    background-image: url(icons/checkedHover.png);
}
.btnCheck:checked{
    background-color: rgb(150, 255, 150);
    background-image: url(icons/checked.png);
}
.btnDelete{
    background-image: url(icons/delete.png);
    transition:0.3s;
}
.btnDelete:hover{
    background-image: url(icons/deleteHover.png);
    background-color: red;
    transform: scale(1.1);
    background-size: 80%;
}
.btnEdit{
    background-image: url(icons/edit.png);
    transition:0.3s;
}
.btnEdit:hover{
    background-image: url(icons/editHover.png);
    transform: scale(1.1);
}
#wall{
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top:0;
    left:0;
    height:100vh;
    width: 100vw;
    margin:0;
    padding:0;
    z-index: 1000;
}

.window{
    position: relative;
    margin:150px;
    margin-inline:auto;
    width:min-content;
    height: min-content;
    border-radius: 10px;
    z-index: 1001;
    display:flex;
    flex-direction: column;
    background-color: rgb(20,20,20);
    border:1px solid rgb(255, 255, 255);
    padding:20px;
    text-align: center;
}
.divButtons{
    display:flex;
    flex-direction: row;
    justify-content: center;
    button{
        margin:10px;
    }
}

.divContent{
    display:flex;
    flex-direction: column;
    label{
        padding:5px;
        font-weight: bold;
        font-family: monospace;
        font-size: 20px;
    }
    input{
        background-color: rgb(100, 100, 100);
        border:1px solid rgb(255, 255, 255);
        border-radius: 5px;
        padding: 5px;
        margin-block-end:20px;
        font-weight: bold;
        font-family: monospace;
        font-size:15px;
        color:white;
    }
    input:focus{
        outline:none;
    }
    input:hover{
        border:1px solid rgb(100, 100, 100);
    }
    textarea{
        resize: none;
        width: 20vw;
        height: 10vw;
        background-color: rgb(100, 100, 100);
        border:1px solid rgb(255, 255, 255);
        border-radius: 5px;
        padding: 5px;
        font-weight: 520;
        font-family: monospace;
        font-size:15px;
        color:white;
    }
    textarea:focus{
        outline:none;
    }
    textarea:hover{
        border:1px solid rgb(100, 100, 100);
    }
    strong{
        margin-block-end:30px;
    }
}
#btnCreate{
    margin:0;
    font-size: 20px;
    color:white;
    background-color: black;
    border:1px solid rgb(31, 31, 31);
    border-radius: 10px;
    transition:0.3s;
    margin-block-end: 4px;
    cursor:pointer;
}
#btnCreate:hover{
    background-color: rgb(15, 15, 15);
}