/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-11/nat1004.cur), auto !important;} /* End https://www.cursors-4u.com */
  button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 10px 20px;
      font-size: 16px;
      background-color: hotpink;
      color: black;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    }
 @keyframes moveAround {
      0% {
        transform: translate(0, 0);
      }
      25% {
        transform: translate(100px, 100px);
      }
      50% {
        transform: translate(200px, 0);
      }
      75% {
        transform: translate(100px, -100px);
      }
      100% {
        transform: translate(0, 0);
      }
    }
    /* Styling the text elements */
    h1 {
      position: absolute;
      animation: moveAround 10s infinite;
    }

    /* Adjusting styles for individual text elements */
    #text {
      color: #007bff; /* Bright blue color */
      top: 30%; /* Adjust position as needed */
      left: 50%; /* Adjust position as needed */
      transform: translateX(-50%);
    }

    #text2 {
      color: #ff6347; /* Red color */
      top: 40%; /* Adjust position as needed */
      left: 50%; /* Adjust position as needed */
      transform: translateX(-50%);
    }

    #text3 {
      color: #00ff00; /* Green color */
      top: 50%; /* Adjust position as needed */
      left: 50%; /* Adjust position as needed */
      transform: translateX(-50%);
    }

    #text4 {
      color: #ff00ff; /* Purple color */
      top: 60%; /* Adjust position as needed */
      left: 50%; /* Adjust position as needed */
      transform: translateX(-50%);
    }