body {
    background-color:;
}
/* search input*/
form.example input[type=text]{
    padding: 10px;
    font-size: 17px;
    border: 1px solid white;
    float: left;
    width: 60%;
    background: white;
}
/*end search input*/


/*search button*/
form.example button{
    float: left;
    width: 20%;
    padding: 10px;
    background: black;
    color: white;
    font-size: 17px;
    border: 1px solid white;
    border-left: none;
    cursor: pointer;
}

form.example button: hover{
    background:#d9479f;
}

form.example:: after{
    content: "";
    clear: both;
    display: table;
}

form.example {
    float:right
}
/*end search button*/


/*nav bar*/
h2 {
    background-color: black;
    margin-bottom: 0px;
    width: 100%;
    height: 100px;
    border: solid black 1px;
}

h2 nav ul li {
    display: inline;
    background-color: black;
    padding: 5px 10px;
    float: left;
}

h2 nav ul li a:hover{
    background-color: #d9479f;
    height:100px;
    padding: 14px 16px;
}

a {
    text-decoration: none;
    font-color: white;
}

a:link {color:white;}
a:visited {color:white;}
a:hover {font-color:LightGray;}
a:active {color:white;}
/*end nav bar*/


/*footer*/
.footer {
    position: fixed;
    left: 0;
    bottom: 0px;
    padding-top: 10px;
    width: 100%;
    height: 35px;
    background-color: black;
    color: white;
    text-align: center;

}

/*end footer*/
