body {
    /* Full size background image code from: https://www.w3schools.com/css/css3_backgrounds.asp
    
    Image for background from my own work.
    */
    background-image: url(IMG_7075.JPG);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    
    color:black;
    
    
    
}


/* HTML Images help from - https://www.w3schools.com/html/html_images.asp */
img {
    margin-top:5px;
    width:800px;
    
    /* Box shadow from - https://www.w3schools.com/css/css3_shadows.asp */
    
    box-shadow: 5px 5px darkgrey;
    border-style:solid;
    border-width: 1px;
    margin-bottom: 15px;

}

#page2 {
    /* Rounded corners from - https://www.w3schools.com/css/css3_borders.asp */
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    height:950px;
    border: 5px;
    padding:20px;
    background-color:blanchedalmond;
    border-style: solid;
    border-width: 1px;
}




#header {
    /* Rounded corners from - https://www.w3schools.com/css/css3_borders.asp */
    border-radius:15px;
    text-align: center;
    font-size: 24pt;
    font-family: sans-serif;
    background-color:azure;
    padding-bottom: 2px;
    padding-top: 2px;
    border-style:solid;
    border-width: 1px;
    
    
}

#top {
    margin-top: 5px;
    width:798px;
    height:52px;
    
    border-style: solid;
    border-width: 1px;
    background-color:burlywood;   
}


#text{
    
    margin: 10px;
    
}


#aboutme {
    
    
    
}





/* Code for Dropdown and Navigation Bar from:
https://www.w3schools.com/css/css_dropdowns.asp
https://www.w3schools.com/css/css_navbar.asp
https://www.w3schools.com/css/tryit.asp?filename=trycss_dropdown_navbar
*/


ul {
    text-align: left;
    list-style:none;
    margin:0;
    padding: 0;
    font-family: "Arial";
    font-size:20px;
}

li {
    float:left;
}

li a, .dropbtn {
    width:120px;
    display:inline-block;
    text-align: center;
    padding:13.5px 10px;
    text-decoration: none;
    color:black;
    
}

li.dropdown {
    display: inline-block;
}

li:hover {
    background-color:darkgrey;
    
}

    
.dropdown:hover .dropdown-content {
    display: block;
}



.dropdown-content {
    
    display:none;
    position: absolute;
    min-width: 160px;
    z-index: 1;   
    
}

.dropdown-content a {
    background-color:burlywood;
    padding: 13.5px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    
}

.dropdown-content a:hover {background-color:darkgray}