    /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      margin-bottom: 3;
      border-radius: 2;
    }

/* Add a red background color and some padding to the navbar*/
.navbar {
background-color: #FF0000;
padding: 25px;
}
    
    /* Add a red background color and some padding to the footer */
    footer {
      background-color: #FF0000;
      padding: 25px;
    }
   
/*Change the navbar's front color to Black*/
.nav.navbar-nav. li a{
color: #000000;
}