*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #141a3a;
    color: #fff;
    font-family: sans-serif;
}

header{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-section, .form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.form{
    width: 50%;
    margin-top: 40px;
}

.form div{
    display: flex;
    flex-direction: column;
    gap: 3px;
}

button{
    background-color: #fff;
    border: 0;
    color: #141a3a;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    width: 100px;

}

.form input, .form textarea{
    padding: 7px;
    border-radius: 5px;
    border: 0;
    width: 400px;
    resize: none;
}

.form textarea{
    height: 100px;
}

.tasks-container{
    list-style: none;
    display: flex;
    width: 100%;
    gap: 300px;
}

.tasks-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
}

#task-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    justify-content: center;
}

.delete-btn{
    background-color: #ff0000;
    border: 0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    width: 100px;
}

.task-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.task-div{
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
    gap: 40px;
    margin-top: 40px;

}

.task-info ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.task-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}