* {
    border: 0px; margin: 0px; padding: 0px; box-sizing: border-box;
}

body {
    background-color:azure;
    color:rgb(1, 23, 36);
    font-family: verdana; font-size: 20px;
    padding: 50px 100px;
    background-image: url(/images/tabitha-turner-artist.jpg);
    background-size: cover;
    background-position: center center;
    min-height: 650px;
}

h1 {
    padding: 20px; 40px;
}    
    
h1, h2 {
    text-align: center;
    text-shadow: 2px 3px 10px whitesmoke;
}

p {
    background-color: rgba(236, 251, 251, .5);
    padding: 10px 10px;
}

p span {
    color:#0929dd;
}

header nav ul {
    list-style-type: none; /* Removes bullets */
    font-size: 18pt; 
    height: 60 px;
    background-color: rgba(236, 251, 251, .5);
    padding: 10px 10px;
}

nav a:link {
    text-decoration:none; /* no underlining */
    color: #182888
}

nav a:hover {
    /* what it does when cursor is over it */
    text-decoration:underline;
}

nav a:active {
    /* link appearance as it is being clicked */
    font-weight: bold;
}

nav a:visited {
    /* how the link will look after being visited */
    color: #530505
}
    
        