body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #212121;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}
.container{
    background-color: lightblue;
    padding:20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #fff;
    width: 400px;
    text-align: center;
}
h1{
    color: #333;
    margin-bottom: 30px;
}
p{
    border: 1px solid green;
    width: 10em auto;
    background-color: #93caa8;
    border-radius: 5px;
    padding: 5px;
}
#taskList{
    list-style: none;
    padding:0 ;

}
#taskList li {
    padding: 5px;
    margin-top: 5px;
    background-color: #f2f2f2;
    border-radius: 5px;
    position: relative;
    color: black;
}

#startButton{
    background-color: #008000;
    color: #fff;
    font-size: 18px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
#startButton:hover{
    background-color: #06c106fb;
}

.info{
    color: navy;

}

.status{
    color: #333;
    background-color: #a3c0f2;
    border: 1px solid green;
    border-radius: 2px;
    padding: 5px;
    display:none
}