div {
    background-color: rgb(17, 118, 180);
    padding: 3em;
    box-shadow: 5px 5px 10px -5px rgba(0,0,0,.5);
    font-size: 1.3em;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,.1),
                 -1px -1px 2px rgba(0,0,0,.1), 
                 -1px 1px 2px rgba(0,0,0,.1), 
                 1px -1px 2px rgba(0,0,0,.1);
}

ul {
    list-style-type: none;
    position: relative;
}

li {
    background-color: #FFF;
    color: rgba(0,0,0,.8);
    margin: 0;
    padding: 12px;
    text-shadow: none;
    font-weight: 700;
    box-shadow: 3px 3px 5px -2px rgba(0,0,0,.5);
    transition: 150ms;
}

li:hover {
    transform: scale(1.01);
    border: 1px solid rgba(255,0,0,.5);
    position: relative;
}

button {
    font-size: 1.3em;
    background-color: green;
    border: none;
    box-shadow: 3px 3px 5px 1px rgba(0,0,0,.5);
    transition: 150ms;
    color: white;
    padding: 5px;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 8px 1px rgba(0,0,0,.3);
}