*{
    font-family: Arial, Helvetica, sans-serif;
    
}
body{
    background-image: linear-gradient(to right, rgb(148, 2, 177), rgb(22, 9, 198));
    max-width: 400px;
    margin: auto;
}

h1{
    font-size: 40px;
    text-align: center;
    color: orange;
}
input{
    height: 30px;
    width: 70%;
    border: 2px solid orange;
    background-color: rgba(0, 0, 0, 0.71);
    color: white;
    outline: none;
    padding: 7px;
    
}
button{
    border: none;
    height: 40px;
    width: 90px;
    background-color: orange;
    color: #ffff;
    cursor: pointer;
    padding: 10px;
    transition: all 1.0s;
}
button:hover{
    background-color: rgb(240, 197, 116);
    transform: translateY(-5px);
   
}
button:active{
    background-color: rgb(222, 203, 166);
}
ul{
    list-style: none;
    padding: 0;
}
li{
    background-color: orange;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
span{
    cursor: pointer;
    
}