

body {
    background-color:black;
    text-align:center;
    font-family: macondo;
    letter-spacing:3px;
    max-width:100%;
    
}

h1 {
    color:white;
    text-align:center;
    margin-top:50px;
}

.glowinglight {
    font-size:40px;
    color:white;
    animation: glow 5s ease-in-out infinite alternate;
}


@keyframes glow  {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e9d7e0;
    }
    
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #e7d3dd, 0 0 40px #ded3d8;
    }
  }



hr {
    margin-top:30px;
    width:50%;
    height:2px;
    background-color: rgb(76, 159, 226);
    border-color:rgb(76, 159, 226)
   
}

ul {
    color:white;
    font-size:22px;
    list-style:none;
    padding:25px;
    margin-top:-30px;
    
}

li {
    display:inline-block;
    padding:25px;   
   
  
}

li:hover{
    transform:scale(1.1);
    transition:0.3s ease-in-out;
    /*text-decoration:underline;
    text-underline-offset: 15px; */
}

a {
    text-decoration:none;
    color:rgb(127, 83, 143); 
   
}

a:hover{
color:green;


}

li::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../images/Trident_cursor.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) rotate(66deg);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease; /* Smooth animation */
}

li:hover::after {
    opacity: 1; /* Show on hover */
}



img {
    margin-top:80px;
   max-width:100%;
   width:800px;
   border-radius:10px;

}



.footermessage {
    color:white;
    /*position: static;
   left: 0;
   bottom: 0;
   width: 100%;*/

margin-top:80px;
   text-align: center;
}

/* Floating music control in bottom right corner */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(127, 83, 143, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(127, 83, 143, 0.5), 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: macondo;
    letter-spacing: 1px;
}

.music-control:hover {
    transform: scale(1.08);
    background: rgba(127, 83, 143, 1);
    box-shadow: 0 0 30px rgba(127, 83, 143, 0.8), 0 8px 25px rgba(0,0,0,0.4);
}

.music-icon {
    font-size: 18px;
}

/* Hide the default audio player */
#background-audio {
    display: none;
}

.playing {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
