
body {
  margin: 0;
  font-family: Arial;
  text-align: center;
  color: white;
  background: linear-gradient(#8b0000, #4b0000);
  padding-bottom: 70px;
}


.logo {
  width: 150px;
}

.logo-anim {
 
  animation: glow 2s infinite alternate, float 3s ease-in-out infinite;
}

/* 🔥 Glow Effect */
@keyframes glow {
  0% {
    filter: drop-shadow(0 0 5px gold);
  }
  100% {
    filter: drop-shadow(0 0 25px gold);
  }
}

/* 🎯 Floating Effect */
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* NAV */
.nav-link{
  color:white !important;
}

/* MARQUEE */
marquee {
  color: yellow;
  font-weight: bold;
}

/* FOOTER */
.footer {
  background: #6b0000;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: yellow;
}

/* LOGO */
.logo {
  width: 150px;
}
