body{background-color: blue;}    

/* Remove the navbar's default margin-bottom and rounded borders */ 

    .navbar{

      padding: 50px;

      background-color: orange;

      margin-bottom: 50px;

      border-radius: 50px;

    }

    

    /* Add a gray background color and some padding to the footer */

    footer {

      color: black;

      background-color: orange;

      padding: 25px;

    }

    

  .carousel-inner img {

      width: 100%; /* Set width to 100% */

      margin: auto;

      min-height:200px;

  }



  /* Hide the carousel text when the screen is less than 600 pixels wide */

  @media (max-width: 600px) {

    .carousel-caption {

      display: none; 

    }

.img-hover img {
    -webkit-transition: all .3s ease; /* Safari and Chrome */
  	-moz-transition: all .3s ease; /* Firefox */
  	-o-transition: all .3s ease; /* IE 9 */
  	-ms-transition: all .3s ease; /* Opera */
  	transition: all .3s ease;
}
.img-hover img:hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform:translateZ(0) scale(1.20); /* Safari and Chrome */
    -moz-transform:scale(1.20); /* Firefox */
    -ms-transform:scale(1.20); /* IE 9 */
    -o-transform:translatZ(0) scale(1.20); /* Opera */
    transform:translatZ(0) scale(1.20);
}
