body {
  background: lavender;
  text-align: center;
  cursor: url('cursor.png'), auto;
}

.button {
  color: pink;
}
.button:hover {
  color: hotpink
}
.bouncy-text {
 position: relative;
 animation-name: bounce;
 animation-duration: 0.5s;
 animation-iteration-count: infinite;
}
@keyframes bounce {
  0% {
    top: 0px;
    }
  50% {
    top: 10px;
    }
  100% {
    top: 0px;
    }
}

p {
  color: blue;
}
.fire-btn {
  background: blue;
  color: black;
  font-weight: bold;
  font-size: 20px;
  padding: 8px 32px;
  border: none;
}
.red-text {
  color: red;
}