body{
    background-color: rgba(17, 17, 226, 0.86);
    font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
  width: 1px;
}
::-webkit-scrollbar-thumb {
  background: blue;
}

.container{
    height: 90vh;
    width: 80%;
    margin: 2% auto;
    background-color: white;
    display: flex;
    flex-direction: column;
}
.inputtasks{
    display: flex;
    width: auto;
    justify-content: space-between;
    margin: 26px 36px 88px 36px;
}
.inputtasks button{
    color: white;
    background-color: blue;
    border-radius: 8px;
    width: 95px;
    height: 45px;
    border: none;
    font-size: 18px;
}
input{
    flex-grow:1;
    margin-right: 5px;
    height: 43px;
    font-size: 20px;
    border: 1px solid;
    padding: 0px 12px;
    border-radius: 6px;
}
input:focus{
    outline: 2px solid blue;
}
.tasks{
    display: flex;
    flex-direction: column-reverse;
    max-height: 75%;
    overflow-y: auto;
}
.delete{
    color: white;
    border: none;
    height: 90%;
    max-height: 80%;
    font-size: 12px;
    padding: 6px 8px;
    margin-right: 10px;
    align-self: center;
    border-radius: 6px;
    background-color: rgb(0, 0, 255);
    cursor: pointer;
}
.individualTask{
    width: auto;
    border-radius: 5px;
    display: flex;
    margin: 6px 38px;
    border: 1px solid #0adbdee1;
    background-color: #70bbde;
    justify-content: space-between;
}
.individualTask p{
    margin-left: 12px;
    font-size: 18px;
}

@media (max-width: 500px){
    .inputtasks{
        flex-direction: column;
    }
    input{
        width: auto;
    }
    .inputtasks button{
        margin-top: 12px;
        width: 100%;
    }
}
