#container{
    width: 80%;
    border: 1px solid black;
    margin: 0 auto;
}
#header{
    height: 100px;
    padding: 10px 0px;
}
#brand {
    float: left;
}

h1 a {
    font-size:50px;
    font-weight: 100;
    color: blueviolet;
    text-decoration: none;
}

#searchBox{
    float: right;
background: linear-gradient(rgb(166, 83, 160),blueviolet);
width: 400px;
height: 50px;
padding: 20px 20px 0px 20px;
margin-top: 20px;
}

.text {
    float: left;
    width: 200px;
    padding: 5px;
    font-size: 15px;
    color: black;
    background: white url('img/search.png') right center no-repeat;
}

.submit {
    float: right;
    padding: 5px;
    font-weight: bold;
    color:blueviolet;
    background: white;
    font-size: 15px;
}

.clear{
    clear: both;
}

#menu {
    height: 70px;
    background: linear-gradient(blueviolet, rgb(166, 83, 160));
    padding: 7px 0px;
}
ul{
    list-style: none;
}

#menu ul li{
    float: left;
    padding: 0 20px;
    height: 30px;
    border-right: 1px solid white;
}

#menu ul li:last-child{
    border-right: none;
}

#menu ul li a{
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 17px;
    line-height: 30px;
    padding: 0 20px;
    transition: font-size 0.3s ease;
    -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;
}

#menu ul li a:hover, #menu ul li a.active{
    font-size: 25px;
    font-weight: bold;
}