body {
  background-color: lightblue;
}

.box {
  background-color: lightgreen;
  width: 100px;
  height: 100px;
}

.box:hover {
  background-color: grey;
}