.product {
    background-color: gray;
    border: 2px solid black;
    width: 300px;
    padding: 5px;
    margin: 10px 20px;
    transition: transform .3s;
    box-shadow: 3px 3px black;
    border-radius: 5px;
    color: white;
    text-shadow: 1px 1px black;
}
.product:hover {
    color: black;
    text-shadow: 0px 0px;
    background-color: white;
    transform: scale(1.05);
    border: 2px solid white;
    border-radius: 5px; 
    box-shadow: 0px 0px;
}
.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}
  
body {
    text-align: center;
    background-color: lightgray;
}

.active {
    background-color: green;
}
/* TODO: Make you pages look pretty! */
