* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  cursor: url('hand.png'), auto;
}

.container {
  padding: 20px;
}

.center-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: url('hand.png'), pointer;
  transition: transform 0.3s ease;
}

.center-image:hover {
  transform: scale(1.05);
}