*{
    margin: 1px;
    padding: 1px;
}


p.blue{
    color: darkblue; font-style: italic; font-weight: 900; font-size: 36px; position: relative; 
	text-align:justify; text-indent:1em;
}
header{
	background-color: greenyellow;
	display: flex-start;
    align-items: center;
	width: 100%;
}
ul{
	list-style-type: square;
	list-style-position: inside;
	text-align:center; 
	color:darkblue; 
	font-weight:900; 
	font-size:25px; 
	text-indent:0.5em;
}


div.container {
    position: relative;
}
 
div.background {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 43px;
    background-image: url('../images/AssessmentFiles/rhondaWise_andHusbandBarry.jpg'); 
    opacity: 0.6;
    z-index: -1;
}

footer{
    background-color: brown;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 60px;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    height: 25px;
}

nav a{
    text-decoration: none;
    color: tomato;
    text-shadow: 0px 25px 1px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}

nav a:hover{
    transform: translateY(-25px);
}
