/*Changed everything to vh/vw for responsive design 10/1/16*/
  body{background-color:#ffd783;}
    header{
      margin-left:23vw;
      margin-bottom:3vh;
      width:50vw;
      text-align:center;
      border:2vh solid #75a9f9;
      border-radius:2vh;
      background-color:#fec63d;
      color:#75a9f9;
    }
    h1{
      font-weight:800;
    }
    /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      background-color:#fec63d;
      margin-bottom: 0;
      border-radius: 1vh;
      border: 1.5vh solid #75a9f9;
    }
   
    /* Add a gray background color and some padding to the footer */
    footer {
      color:#3d8af7;
      font-size:2vh;
      background-color: #fec63d;
      border: 1vh solid #75a9f9;
      border-radius:1vh;
    }
    
  .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; 
    }