body {
background-color: black;
}

/* Large desktop */
@media (min-width: 1200px) { ... }
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }
 
/* Landscape phones and down */
@media (max-width: 480px) { ... }
    
 h1 {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 300%;
  text-align: center;
    }
  
.feature {
  background-color: lightgray;
  color:black;
  margin-left: 5px;
}

  #navtext a {
      font-family: 'Oswald', sans-serif;
      color: white;
      padding: 1500 px 100 px;
      /* text-align: center; 
      float:right; */
    }
  
  #text p {
      font-family: 'Oswald', sans-serif;
      color: white;
      text-align: center;
      margin-left: 5px;
      
    }
    
   .featuretext {
      color:black;
      margin-left: 5px;
   }

    .col-xs-12 {
      float: left;
    }
    
    .span6-right {
      float: none;
     
    }
    
    p{
      color: white;
    }
    
