/*styling.css*/

body{
    font: Arial, Helvetica, sans-serif;
}

#container {
    width: 1000px;
    /*border: 1px solid grey;*/
    margin: 0 auto;
    
}

#header{
    height: 60px;
    padding: 5px 0;
    
}

#brand{
    float: left;
}

h1 a{
    font-size: 440px;
    font-weight: 90;
    color: #861bbf;
    text-decoration: none;
}

#searchbox{
    float: right;
    background: linear-gradient(#E4F2B9, #b7E953);
    background: -webkit-linear-gradient(#e4f2b9, #b7e953);
    background: -o-linear-gradient(#e4f2b9, #B7E953);
    background: -moz-linear-gradient(#E4F2B9, #B7E953);
    width: 500px;
    height: 50px;
    padding: 15px 15px 0 15px;
    margin-top: 10px;
    
}

.text{
    float: right;
    width: 200px;
    padding: 5px;
    font-size: 15px;
    color: #E36A0C;
    background: white url(../images/search.png) right center no-repeat; 
    border: 1px solid #C8D03E;
}

.submit{
    float: right;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: #A751D6;
    border: 1px solid #DCD5E1;
    
}

.clear{
    clear: both;
    
}

#menu{
  height: 40px;
  background: linear-gradient(#0000FF, #0000FF);
  background: -webkit-linear-gradient(#0000FF, #0000FF);
  background: -o-linear-gradient(#F8F594, #D5D533);
  background: -moz-linear-gradient(#0000FF, #0000FF);
   padding: 5px 0;
    
}

ul{
    list-style: none;
}

#menu ul li{
 float: left;
 padding: 0 15px;
 height: 30px;
 border-right: 1px solid #5d12e7;
}
#menu ul li:last-child{
 border-right: none;
}

#menu ul li a{
    text-decoration:none;
    text-transform: uppercase;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 20px;
    -webkit-transition: font-size 0.3s ease;
    -moz-transition: font-size 0.3s ease;
    -o-transition: font-size 0.3s ease;
    -ms-transition: font-size: 0.3s ease;
    transition: font-size 0.3s ease;
            
}

#menu ul li a:hover, #menu ul li a.active{
    font-size: 20px;
    font-weight: bold;
    color: #B314DB;
}

#introduction{
    background: linear-gradient(#E5F2BB, #B7E952);
    background: -webkit-linear-gradient(#E5F2BB, #B7E952);
    background: -o-linear-gradient(#E5F2BB, #B7E952);
    background: -moz-linear-gradient(#E5F2BB, #B7E952);
    padding: 20px;
    margin: 16px 0;
        
}

#introduction h3{
        font-size: 45px;
        color: #316901;
        font-weight: normal;
}


#introduction p{
        font-size: 15px;
        color #628F19;
        text-align: justify;
        
}    
    
  
    
   /* .footer{
        text-align:center;
        height: 34px;
        background: linear-gradient(#F6F390, #D5D533);
        background: -webkit-linear-gradient(#F6F390, #D5D533);
        background: -o-linear-gradient(#F6F390, #D5D533);
        background:  -moz-linear-gradient(#F6F390, #D5D533);
        padding: 10px 10px;
        margin-top:230px
        
} */
/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #D5D533;
}
