html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
  cursor: url('./images/pointer.png'), auto;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* Canvas should fully cover the screen */
canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Valentine Button */
#valentinesButton {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 160px); /* pushes button below text */
  height: 50px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #2d2dff;
  background-color: #2d2dff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
#valentinesButton:hover {
  background-color: #1f1faa;
  color: #eee;
}
