

  /* Blinking text style */
  .blink {
    color: red;
    font-weight: bold;
    font-size: 24px;
    animation: blink-animation 1s steps(2, start) infinite;
  }

  /* Keyframes for blinking effect */
  @keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }
