.cursor {
    font-weight: bold;
    color: white;
    display: inline-block;
    animation: blinkCursor 0.6s infinite alternate;
  }
  
  .blink {
    animation: blinkCursor 0.8s infinite;
  }
  .glow-text {
  
    display: inline-block;
    color: white;
    text-decoration: none;
    
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4);
    animation: glowEffect 1.5s infinite alternate ease-in-out;
  }
  
  /* Glowing animation */
  @keyframes glowEffect {
    0% {
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 
                   0 0 10px rgba(255, 255, 255, 0.2);
    }
    100% {
      text-shadow: 0 0 15px rgba(255, 255, 255, 1), 
                   0 0 25px rgba(255, 255, 255, 0.9), 
                   0 0 35px rgba(255, 255, 255, 0.7);
    }
  }
  .icon{
    width:40px;
    height:40px;
    display:inline;
  }
  #text2 {
    display: flex;
    justify-content: center;
    
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    overflow: hidden;
  }
  
  .shiny-black {
      background: linear-gradient(to bottom, #000000, #070707, #021882); /* Top-to-bottom gradient */
      
      padding: 20px; /* Adjust padding */
      color: white; /* Ensures text visibility */
  }
  .responsive-text {
    font-size: 0.7rem;
  }
  .annauniv-text{
    font-size:1.8rem;
  }
  @media (min-width:300px){
    .glow-text{
      font-size:0.9rem;
    }
    .responsive-text{
      font-size:0.7rem;
    }
    .annauniv-text{
      padding-left:10px;
      font-size:1.2rem;
    }
    .text-logo{
      font-size:10px;
    }
  }
  @media (min-width: 400px) {
    .responsive-text {
        padding-left:5px;
        font-size: 0.75rem;
    }
    .annauniv-text{
      margin-left:10px;
    }
    
  }
  @media (min-width:820px){
    .responsive-text{
      font-size:1.2rem;
    }
    .glow-text{
      font-size:1.2rem;
    }
  
  }
  
  /* Large screens (lg and up) */
  @media (min-width: 992px) {
    .responsive-text {
        
        padding-left:100px;
        font-size: 1.5rem;
    }
    .annauniv-text{
      margin-left:20px;
      font-size:2rem;
    }
    .text-logo{
      font-size:1rem;
    }
  }
  
  .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px); /* Start position */
  }
  
  @keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .myFont{
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 25px;
    letter-spacing: 1.2px;
    word-spacing: 0.8px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    font-style: italic;
    font-variant: normal;
    text-transform: none;
  }
  
  @keyframes slideINRight{
    from{
      transform:translateX(100%);
      opacity:0;
    }
    to{
      transform:translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideINLeft{
    from{
      transform:translatex(-100%);
      opacity:0;
    }
    to{
      transform:translatex(0);
      opacity:1;
    }
  }
  .animate-prayacthon{
    animation: slideINRight 2s ease-out forwards;
  }
  .animate-HACK{
    animation: slideINLeft 2s ease-out forwards;
  }
  
  .logo-box{
    position: relative;
    width:10%;
    height:10%;
    text-align: center;
  }
  .img-override{
    background-color: transparent;
    
  }
  
  .border {
    
    border: 4px solid #ffcc00; /* Batman's yellow */
    border-radius: 10px; /* Slightly rounded edges */
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7), 
                0 0 20px rgba(255, 204, 0, 0.5); /* Glowing yellow */
    background: linear-gradient(to right, #000000, #222222); /* Dark Batman theme */
    color: white; /* Ensure text is readable */
    padding: 5px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  @keyframes batman-flash {
    0% { color: #5b4e1d; text-shadow: 0 0 10px #5b4e1d; }
    50% { color: white; text-shadow: 0 0 20px white; }
    100% { color: #ffcc00; text-shadow: 0 0 10px #ffcc00; }
  }
  
  .font-batman-yellow {
    font-weight: bold;
    text-transform: uppercase;
    animation: batman-flash 2s infinite alternate;
    text-align: center;
  }
  
  .svg-container {
    display: flex;
    flex-direction: row; 
    gap: 20px;
  }
  
  
  .animated-svg {
    opacity: 0;
    transform: translateX(-100px); 
    animation: fadeIn 1s forwards;
  }
  
  .animated-svg:nth-child(1) { animation-delay: 0.3s; }
  .animated-svg:nth-child(2) { animation-delay: 0.6s; }
  .animated-svg:nth-child(3) { animation-delay: 0.9s; }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateX(-100px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  
  .svg-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .box .btn {
    background: linear-gradient(45deg, #ff6b6b, #845ec2); 
    font-size: 20px;
    font-weight: bold;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
  }
  
  
  .box .btn:hover {
    background: linear-gradient(45deg, #ff3e3e, #5d34a9); 
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
    transform: scale(1.10);
  }
  
  
  .box .btn:active {
    transform: scale(0.98);
  }
  
  
  .box .btn a {
    text-decoration: none;
    color: white;
    display: block;
  }
  
  
  .box {
    text-align: center;
    margin-top: 20px;
  }
  
  .hexagon {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
  }
  
  
  .hexagon:nth-child(2) {
    animation-delay: 0.5s; 
  }