@keyframes glowTitle {
    0%{
        transform: translateY(0) scale(1);
        text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400;}
       
    50%{   
        transform: translateY(-3px) scale(1.05);
        text-shadow:0 0 20px #f0b400, 0 0 40px #f0b400;
       
    } 
    100%{
        transform: translateY(0) scale(1);
        text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400;
    }   


}



body{background-color: #eede2f; color: rgb(0, 0, 0);}
table,tr,td{border:solid black ;}
.main{
    background-color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;

}
.main ul{
    list-style: none;
    margin: 0;  
  padding: 0;
}
.main li{
    display: inline;
    margin: 0 30px;
}
.main a{
    color:white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;   
    display: inline-block;
    animation: glowPulse 2s infinite ease-in-out;

}
.main a:hover {
    color: #f0b400;
    transform: scale(1.1);
    text-shadow:0 0 10px #ffc107, 0 0 20px #f0b400 ;
    box-shadow:0 0 10px #f0b400 ;
  }
  @keyframes glowPulse {
    0%{transform: scale(1);}
    50%{transform: scale(1.2);}
    100%{transform: scale(1);}
    0%{text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400 ;}
    50%{text-shadow:0 0 20px #f0b400, 0 0 40px #f0b400 ;}
    100%{text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400 ;}
  }
 .video-container{
    display: flex;
    flex-wrap: wrap;  
  gap: 20px; 
  justify-content: center;  

 }
 .video-item{
    flex:20px;
    text-align: center;
 }
 .content {
    padding: 20px;
    text-align: left;


}

    

 .content a{
    color:rgb(75, 67, 67);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;   
    display: inline-block;
    animation: glowPulse 2s infinite ease-in-out;
 }
 .content a:hover {
    color: #d5a001;
    transform: scale(1.1);
    text-shadow:0 0 10px #bf9005, 0 0 20px #daa403 ;
    box-shadow:0 0 10px #deab13 ;
  }
 @keyframes glowPulse {
    0%{transform: scale(1);}
    50%{transform: scale(1.2);}
    100%{transform: scale(1);}
    0%{text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400 ;}
    50%{text-shadow:0 0 20px #f0b400, 0 0 40px #f0b400 ;}
    100%{text-shadow:0 0 5px #f0b400, 0 0 10px #f0b400 ;}

  
    
 }
  
