/* 基本スタイル */
.aa {
    font-size: 24px;
    color: #00FF00; /* 明るい緑色で近未来的な感じ */
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    animation: glow 1.5s infinite alternate, float 5s infinite;
    position: relative;
  }
  
  /* テキストが光るアニメーション */
  @keyframes glow {
    from {
      text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.5), 0 0 30px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.5);
    }
    to {
      text-shadow: 0 0 20px rgba(0, 255, 0, 1), 0 0 30px rgba(0, 255, 0, 1), 0 0 40px rgba(0, 255, 0, 1), 0 0 50px rgba(0, 255, 0, 1);
    }
  }
  
  /* 浮遊するアニメーション */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  