.choice {
    display: block;
    border-radius: 5px;
    border: 1px solid black;
    padding: 5px;
    margin-bottom: 10px;
    text-align: left;
    cursor: pointer;
    width: 75%;
    background: #fff;
    font-weight: bold;
    font-style: italic;
    box-shadow: 2px 4px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 10px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.1);

}
.choice:hover {
    background: #eee;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 10px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.1);
}