nav {
 position: relative;
 top: 0px;
 left: 100px;
    }

nav ul li {
    background-color: silver;
     border: 4px outset red;
     -moz-border-radius: 20px;
     -webkit-border-radius: 10px;
     display: block;
    float: left;
     height: 30px;
     line-height: 30px;
     font-size: 14px;
    font-weight: bold;
     text-align: center;
     margin: 0px 6px;
    min-width: 50px;
     padding: 0px 10px;
    }
   
 nav ul li a {
     color: red;
    font-family: 'Lucida Grande', Verdana, sans-serif;
     text-decoration: underline;
    }
   
 /*Heading/Body styles*/  

h1 {
    color: red;
    text-align: center;
    font-size: 18px;
    }
   
 h2 {
    color: red;
    text-align: left;
    font-variant: small-caps;
    }
   
 h3 {
    color: red;
    text-align: center;
    font-size: 14px;
    }

p {
    font-size: 15px;
    text-align: justify;
    }

body {
    background-color: black;
    width: 950px;
    margin: 0px auto;
    font-family: 'Lucida Grande', Verdana, sans-serif;
    color: #FFF;
    }
   
 
   
 /*Rotate style*/

h4 {
    font-size: 30px;
    color: red;
    width: 450px;
    height: 110px;
    background-color: silver;
    -ms-transform: rotate(-8deg);
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
    }
       
