/*.todo{
    padding-top: 30px;
    margin: auto;
    width: 90%;
    padding: 100px 5%;
    display: flex;
    justify-content: space-between;

    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.todo div{
    width: 35%;
}
.todo_left{
    padding: 20px;
    box-shadow: 0px 3px 16px 8px rgba(179, 179, 179 ,0.3);
    background-color: white;
}
.todo_left h3{
    color: #2BC3AC;
    padding: 25px 2px;
    border-bottom: 1px solid #EBEDF3;
}
.todo_left p{
    color: #2BC3AC;
    padding: 20px 2px;
    border-bottom: 1px solid #EBEDF3;
    display: flex;
    justify-content: space-between;
}
.todo_left p:last-child{
    border-bottom: 0px solid #EBEDF3;
    text-align: center;
}
.todo_left p:last-child span{
    display: block;
    border: 1px solid #2BC3AC;
    padding: 15px;
    width: 90%;
    margin: auto;
    border-radius: 30px;
}
.todo_left p span:nth-child(2){
    border: 1px solid #2BC3AC;
    background-color: #2BC3AC;
    border-radius: 15px;
    color: white;
    width: 50px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}
.todo_right{
    padding: 150px 50px;
}
.todo_right h1{
    color: #2BC3AC;
}
.todo_right p:nth-child(2){
    border: 1px solid #2BC3AC;
    height: 0px;
    width: 10%;
    margin: 10px 0 30px 0;
}
.todo_right p:nth-child(3){
   color: darkgrey;
   margin: 30px 0 50px;
}
.todo_right span{
    background-color: #E3F6F4;
    margin-top: 20px;
    padding: 15px 50px;
    border-radius: 30px;
    color: #2BC3AC;
    font-weight: bold;
}*/