
/* Custom styles for the navbar */
.navbar {
    background-color: #007bff !important; /* Change the background color of the navbar to blue */
}

.navbar .navbar-brand {
    color: #fff !important; /* Change the text color of the navbar brand */
}

.navbar .nav-link {
    color: #fff !important; /* Change the text color of the navbar links */
}

/* Custom styles for the footer */
.footer {
    background-color: #007bff;
    color: #fff;
}

.footer h5 {
    color: #fff;
}

.footer ul li {
    color: #fff;
}

.footer a {
    color: #fff;
}


/* Custom styles for body text */
body {
  color: #007bff; /* Change the color of the body text */
}

/* Custom styles for links */
a {
  color: #007bff; /* Change the color of links */
}

a:hover {
  color: #0056b3; /* Change the color of links on hover */
}



/* Custom styles for the bodie */
.bodie {
   
    color: #007bff;



.marquee {
      animation: marquee 20s linear infinite;
      color: red;
font-style: italic;
 font-size: 20px;
    }
 @keyframes marquee {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }







  












