body {
    background-color: #CBC3E3;
    margin: 0;
    padding: 0;
}
header {
    background-image: url("img/background.jpg");
    background-size: cover;
    text-align: center;
}
h1 {
    color:white;
    line-height: 350px;
    margin: 0;
}
#navall {
    width: 1300px;
    margin: 0 auto;
}
#nav a {
    background-color:#7209B7;
    width: 325px;
    height: 50px;
    line-height: 50px;
    font-style: oblique;
    text-align: center;	
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: large;
}
#nav a:hover {
    background-color:purple;
    color: white;
}
#nav ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
#nav li {
    text-align: center;
    float:left;
    line-height: 36px;
    position: relative;
    text-decoration: none;
}
#nav ul ul {
    position: absolute;
    top: 50px; 
    left: 0px;
    bottom: 0px;
    text-align: center;
    visibility: hidden;
}
#nav li:hover > ul {
    visibility: visible;
}
#content {
    width: 1300px;
    background-color: #FFF;
    margin: 0 auto;
    padding: 20px;
}
p {
    margin: 20px;
    margin-right: 20px;
}
#footer {
    background-color: #7209B7;
    color:white;
    text-align: center;
    padding:1px;
}
