*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-color: #2362CC;
}

main {
    width: 600px;
    height: 580px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.top{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 40px;
    margin-bottom: 60px;
}

input {
    height: 50px;
    width: 260px;
    padding-left: 15px;
    font-size: 15px;
}

button {
    background-color: #2362CC;
    color: #FFFFFF;
    height: 50px;
    width: 100px;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}
.task{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.task1 {
    width: 95%;
    height: 48px;
    border-radius: 10px;
    background-color: #C5E1E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: capitalize;
    font-size: 17px;
    margin-bottom: 20px;
}

.delete {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1D1BA3;
    color: #fff;
    width: 50px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}

.delete i{
    font-size: 20px;
}