ul li {
    list-style-type: none;
    display: block;
    padding: 20px;
    background-color: orange;
    margin: 15px;
    width: 75px;
    border-radius: 10px;
}

ul li:hover {
    background-color: cyan;
}