body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 40%;
    }
}
h1{
    color: azure;
    text-align: center;
    font-size: 20vh;
}
input {
    background: transparent;
    border-radius: 20px;
    height: 30px;
    border: inherit;
}
.checkclicked{
    font-style: oblique;
    background-color: red;
}
button {
    border-radius: 20px;
    margin-top:5%;
    background: transparent;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 4px solid rgba(255, 255, 255, 0.18);

}

button:hover {
    /* background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.18); */
    background: rgba(0, 255, 55, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 4px solid rgba(255, 255, 255, 0.18);
}

.container {
    /* border: 2
    px solid red; */
    margin-top: -3%;
    display: flex;
    width: 450px;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;

}
.deleteclick{
    /* background-color: red; */
   display: none;
}

.todo {
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* border-radius: 10px; */
    border: 2px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    margin-top: 20px;
    border-radius: 20px;
    padding: 5%;
    color: white;
    display: flex;
    order: 1;
   justify-content:space-evenly;

}
.todo:hover{
    position: relative;
    background: rgba(0, 255, 55, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* border-radius: 10px; */
    border: 2px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    margin-top: 20px;
    border-radius: 20px;
    padding: 5%;
    color: white;
 
}

.container2 {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 4px solid rgba(255, 255, 255, 0.18);
    display: flex;
    width: 450px;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10%;
    margin-top: -16vh;

}
.newcontainer{
    justify-self: flex-end;
}
.delbutton{
    align-self: flex-end;
}
.checkbutton{
    align-self: flex-end;
}