*{
    margin: 0;
    padding: 0;
}
body{
    background-image: linear-gradient(to bottom ,lightpink,skyblue);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.upperbody{
    margin-top: 2vh;
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.list{
    height: 50vh;
    width: 40vw;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 7px purple;
    display: flex;
    justify-content: center;
    background-image:linear-gradient(to top, grey, white) ;
    flex-wrap: wrap;
}
.txt{
    margin-top: 1vh;
    margin-bottom: 1vh;
    width: 85%;
    height: 1vh;
    border-radius: 10px;
    padding: 2vh;
    font-size: 1.5rem;
}
.timer{
    height: 50vh;
    width: 50vw;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 6px purple;
    background-image: linear-gradient(to left ,yellow, red);
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.date{
    width: 100%;
    font-size: 2rem;
    height: 10vh;
    text-align: center;
}
.time{
    width: 100%;
    font-size: 5rem;
    height: 30vh;
    text-align: center;
}
.lowerbody{
    height: 50vh;
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}
.slowpoke{
    height: 45vh;
    width: 25w;
}
.taskdisplayer{
    height: 40vh;
    width: 30vw;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 7px purple;
    background-image: linear-gradient(to right, skyblue, lightgreen);
}
.pikachu{
    height: 40vh;
    width: 30vw;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 7px purple;
    background-image: url("https://cdna.artstation.com/p/assets/images/images/032/238/582/large/frank-gallaxx-pokemon-14.jpg?1605852529");
    background-size: contain;
}
.audio{
    height: 7vh;
    width: 4vw;
    border-radius: 50%;
    box-shadow: 0px 4px 5px 4px blue;
    background-color: aqua;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn1{
    margin-top: 1vh;
    margin-bottom: 1vh;
    width: 7%;
    height: 5vh;
    padding: 2vh;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
}
.btn1:hover{
    background-color: lightcyan;
    border: 3px solid blue;
    color: blue;
}
#send{
    font-size: 2rem;
}
.i{
    width: 100%;
    height: 7vh;
    display: none;
}
.t{
    font-size: 2rem;
    margin-left: 2vh;
}
.del{
    height: 5vh;
    width: 4vw;
    background-color: azure;
    border-radius: 10px;
    margin-left: 2vh;
}
