body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

canvas {
  display: block;
}

img {
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.05);
}

button {
  transition: all 0.3s ease;
}

button:hover {
  cursor: pointer;
}

