/* BOOTSTRAP NAVBAR */

  /* navbar bg color, bottom edge, and font */
  .navbar-default {
      height:30px;
      background-color:white;
      border-bottom: none;
      color:white;
      font-family: 'Montserrat', sans-serif;
      font-size:20px;
    }
  /* home-link (brand) text-color */
  .navbar-default .navbar-brand {
     color:white;
     border:none;
     font-family:font-family: 'Montserrat', sans-serif;
     font-size:20px;
   }
  /* home-link (brand) text/hover color */
  .navbar-default .navbar-brand:hover,
  .navbar-default .navbar-brand:focus {
      color:white;
  }
  /* other links, text-color */
  .navbar-default .navbar-nav > li > a {
    color:white;
  }
  /* other links text/hover & background/hover colors */
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color:#cccccc;
    background-color:white;
  }
  /* links text/CURRENT & background/CURRENT colors */
  .navbar-default .navbar-nav > .active > a, 
  .navbar-default .navbar-nav > .active > a:hover, 
  .navbar-default .navbar-nav > .active > a:focus {
    color:#fff;
    background-color:#000000;
  }


.bannerbackground{
  background-image:url("images/banner.jpg");
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #cccccc;
}


body{
  margin-top:300px;
}


.headspace{
  margin-top: 60px;
}


h1{
  
  color:white;
  font-size:160px;
  margin-bottom:30px;
  text-align:center;
}

h2{
  font-size:25px;
  margin-bottom:50px;
  margin-top:20px;
  font-family: 'Montserrat', sans-serif;
}
  
h3{
  font-size:20px;
  margin-top:0;
  margin-bottom:30px;
  font-family: 'Montserrat', sans-serif;
}

p{
  font-size:14px;
}


/* CELL PHONE */

@media screen and (max-width: 800px) {
  h1 {
    font-size:60px;
    }
  h2{
    font-size:25px;
    margin-top:20px;
    }
  h3{
    font-size:20px;
    }
  .bannerbackground{
    height: 160px;
    }
  body{
    margin-top:200px;
    }

}