*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primarycolor  :#FFD6E9;
    --Secondary-color  :#B000B2;
    --Tertiary-color  :#FF00DF;
}

body{
    /* background-image: url("/public/assets/totdo-Project-code.jpg"); */
    position: relative;
}
.backgrond {
    position: absolute;
    background-image: url("assets/totdo-Project-code.jpg");
    z-index: -1;
    width: 100vw;
    height: 100%;
    object-fit: cover; /* Makes sure the background image covers the full screen */
}
header{
    width: 90vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 10px;
}
.buton-1{
    padding: 7px 20px;
    background-color: var(--Secondary-color);
    border-radius: 20px;
}
.buton-1 a{
    text-decoration: none;
    font-size: 19px;
    color: var(--primarycolor);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
}
.start-icon{
    color: var(--primarycolor);
    font-size: 21px;
}
/* section css */

.sec-1{
    width: 90vw;
    min-height: 80vh;
    margin: 25px auto;
}
.content{
    width: 30%;
    /* border: 1px solid black; */
    margin: 25px auto;
}
.data-i{
    width: 90%;
    margin: 10px auto;
    background-color: var(--Tertiary-color);
    border: 5px solid var(--Secondary-color);
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.data-i1{
    background-color: var(--Tertiary-color);
    border: none;
    padding: 10px;
    outline: none;
     border-radius: 17px;
    color: var(--primarycolor);
}
.add-btn{
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--Tertiary-color);
     border: 5px solid var(--Secondary-color);
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
     top: -8px;
     right: -27px;
     cursor: pointer;
     color: var(--Secondary-color);
}
footer{
    width: 90vw;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dta-1{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: var(--Secondary-color);

}
.dta-1 a{
    font-weight: bold;
}
.border-1{
    width: 90%;
    margin: 10px auto;
    border: 4px solid var(--Secondary-color);
    border-radius: 18px;

}
.bor-2{
    width: 90%;
    margin: 10px auto;
    border: 4px solid var(--Secondary-color);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
.delete-btn{
    font-size: 30px;
    color: var(--Secondary-color);
}
.tas-1{
    list-style: none;
    color: var(--Secondary-color);
    font-size: 23px;
}