body{
  cursor: url('cursor.cur'), auto;
}

.bounce-link {
  position: absolute;
  animation: bounce 2s infinite;
  display: inline-block;
  width: min-content;
  height: min-content;
  padding: 10px;
  background-color: #00e1ff;
  color: rgb(0, 0, 0);
  text-align: center;
  text-decoration: none;
  font-size: 40px;
  font-weight: bold;
  border-radius: 10px;
  /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); */
}

h1{
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
