@charset "utf-8";
/* CSS Document */

/* 

I will show you how to change a height of a standard Bootstrap navbar.

*/

.navbar {
  min-height: 120px;
}

.navbar-brand {
  padding: 0 15px;
  height: 80px;
  line-height: 80px;
}

.navbar-toggle {
  /* (80px - button height 34px) / 2 = 23px */
  margin-top: 23px;
  padding: 9px 10px !important;
}

@media (min-width: 768px) {
  .navbar-nav > li > a {
    /* (80px - line-height of 27px) / 2 = 26.5px */
    padding-top: 26.5px;
    padding-bottom: 26.5px;
    line-height: 27px;
  }
}




body {
    font-size: 100%;
}

h1 {
    font-size: 2.5rem;
	font-family: "Times New Roman", Times, serif;
}

h2 {
    font-size: 1.875rem;
	font-family: "Times New Roman", Times, serif;
}

h3 {
    font-size: 3.0rem;
	font-family: "Times New Roman", Times, serif;
}

h4 {
    font-size: 8.0rem;
	font-family: "Times New Roman", Times, serif;
	color:#ff5036;
	text-shadow: 3px 2px #f3bf68;
}

p {
    font-size: 1.4em;
	font-family: "Times New Roman", Times, serif;
}

 nav {
     width: 100%;
     height: 40px;
     /*background: -webkit-linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);*/
     /*background: -o-linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);*/
     /*background: linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);*/
	 -moz-border-radius: 6px !important;
        }
.nav a{
    color: black !important;
    font-size: 1.6em !important;
    }
.nav li{
    padding-right:5px;
   }