* {
    padding: 0px;
    margin: 0px;
    font-family: Arial Verdana sans-serif;
}

header {
    height: 100px;
    background-color: #0000FF;
    border-radius: 10px;
}

body {
    width: 800px;
    background-color: black;
    margin: 25px auto;
}

header h1 {
    font-family: Verdana;
    font-style: italic;
    color: white;
    font-size: 30px;
    padding-left: 50px;             
    padding-top: 20px;
    text-shadow: grey 1px 4px;
}

header h2 {
    font-family: Verdana;
    font-style: italic;
    color: white;
    padding-left: 480px;
    text-shadow: black 1px 4px;
    font-size: 16px;    
}

nav ul {
    list-style-type: none;
    }
    
nav li {
    display: inline;
    margin-right: 40px;
    background-color: #0000FF;
    padding-right: 35px;
    padding-left: 35px;
    padding-top: 3px;
    padding-bottom: 3px;
    border: outset;
    border-radius: 5px;
    cursor: default;
}

nav li:hover {
    border: inset;
}

nav a:hover {
    color: #C0C0C0;
    text-shadow: none;
}

nav {
    margin-top: 20px;
    text-align: center;
}

nav a {
    text-decoration: none;     
    font-family: Verdana;
    color: white;
    text-shadow: grey 1px 4px;
}

section {
    width: 575px;
    float: left;
}

article {
    border: 4px groove;
    border-radius: 5px;
    padding: 20px;
    text-align: left;
    margin-top: 35px;
    margin-bottom: 35px;
    margin-right: 35px;
    }
    
article h2 {
    font-size: 16px;
    color: white;
    padding-bottom: 10px;
    letter-spacing: 1px;
}     

article p {
    font-size: 12px;
    padding-bottom: 10px;
    color: white;
}

article blockquote {
    font-weight: bold;
    font-style: italic;
    font-size: 12px;
    padding: 15px;
    background-color: #0000FF;
    border-radius: 10px;
    color: white
}