body{
    background-color: #000000bd;
    font-family: Arial, sans-serif; 
}
.container{
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}
input[type="text"]{
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 16px;
}

button{
    padding: 10px 15px;
    background-color: #ffa200;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button:hover{
    background-color: #218838;
    transform: scale(1.05);
    transition: background-color 0.3s, transform 0.3s;
}
.task-container{
    margin-top: 20px;
    text-align: left;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
ul li{
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s, transform 0.3s;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}
ul li:hover{
    background-color: #f8f9fa;
    transform: scale(1.02);
}
ul li::before{
    content: "•";
    color: #ff9500;
    background-size: cover;
    display: inline-block;
    width: 20px;
    margin-right: 10px;
    font-size: 24px;
    line-height: 0; 
    top: 12px;
    left: 8px;
}
.check{
    
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    color: #ff9500;
    transition: color 0.3s, transform 0.3s; 

    
}
check::after{
    content: "✓";
}



footer{
    text-align: center;
    color: #000000;
    margin-top: 20px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}