body {
  background-color: lightyellow;
  font-family: Arial, sans-serif;
  text-align: center;

  /* Make sure Fist.png is in the same folder as style.css */
  cursor: url("Fist.png"), auto;
}

.container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

img {
  cursor: url("Fist.png"), pointer;
}

img:hover {
  transform: scale(1.05);
}

button {
  background-color: gold;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: url("Fist.png"), pointer;
}

button:hover {
  background-color: orange;
}