<!DOCTYPE html>
<html>
<head>
<style>
.cart {
background-color: rgb(255, 216, 20);
padding-left: 20;
padding-right: 20;
padding-top: 5px;
padding-bottom: 5px;
border-radius: 12.5px;
transition: 0.15s;
border: none;
}
.cart:hover {
background-color:goldenrod;
}
</style>
</head>...