body{
    font-family: monospace;
}
h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgba(146, 20, 58, 0.659);
}
button{
    background-color:rgb(41, 199, 41);
    color: whitesmoke;
    padding: 3px;
    border: 20%;
    border-color: blueviolet;
    border-radius: 100px;
}
button:hover{
    transform: scale(1.2);
    transition: 2 sec;
     transform:rotate(10deg); 
    filter:drop-shadow(3px 3px 3px gray);
}
#taskinput{
    background-color: rgb(255, 253, 253)
}