    /* Add a gray background color and some padding to the footer */
    .navbar {
      margin-bottom: 20px;
      border-radius: 0;
      background-color: #004d61;
    }
    
    footer {
      background-color: #f2f2f2;
      padding: 25px;
    }

    .jumbotron {
      background-color: #fff;
    }
    /* Hide the carousel text when the screen is less than 600 pixels wide */
    @media (max-width: 600px) {
      .carousel-caption {
        display: none; 
      }
    }