/*this affects EVERYTHING on page1.I placed the background image here too */
html{
    height:100%;
}
.bodyPage1 {
    position:static;
    background-image: url("../images/Background.PNG");
    background-size:100% 100%;
    background-repeat:no-repeat;
}
/* this makes sure our form isnt at the top of the page*/
.space {
    height:50px;
    width:50px
}
a {
    color:white;
    text-align:right;
}
/* these alter our navigation buttons*/
li {
    height:20px;
    display:inline-block
}

nav {
    margin-left:auto;
    margin-right:auto;
    height:60px;
    text-align:center;
    border-top-left-radius:30px;
    border-top-right-radius: 30px;
    position:relative;
    top:460px;
}

img:hover{
    box-shadow: 0px 10px 10px white;
}
/* changes style if someone has clinked the link*/
img:visited {
    color:white
}

img:link {
    text-decoration: none;
    color:white;
}
img:hover{
    box-shadow: 10px 10px 10px white;
    padding-top:10px
}

/*To manipulate the cointainer */
#containerForForm {
    height: 800px;
    text-align:center;
}
/* cheftle */
#siteName {
    text-align: center;
    line-height: 70px;
    font-family: 'Clicker Script', cursive;
    color: black;
    font-size: 60px;
}
#motto {
    text-align:center;
    line-height: 10px;
    font-size:20px;
    font-family: 'Shadows Into Light', cursive;
    color:black;
}
/*this is to make sure that ONLY the area around our form is faded, and not the text*/
/*
#backgroundForm {
    height:500px;
    background-color:grey;
    opacity: 0;
    margin-left:auto;
    margin-right:auto;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
}
*/
/*directly manipulates our form elements*/
#formPage1 {
    line-height:1px;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center;
    float:none;
}
input{
    padding:6px 4px 6px 4px;
    font-size:12px;
    border-radius:3px;
    width:30%;
    font-family: 'Jacques Francois', serif;
    display:block;
    margin-bottom:0px;
    margin-top:0px;
    margin-left:auto;
    margin-right:auto;
}
/* CSS manipulation of the First name input
#firstName {
}
*/
/* CSS manipulation of the Last name input
#lastName {
}
*/
/* CSS manipulation of the Email address input 
#emailAddress {
}
*/
/* CSS manipulation of the phoneNumber input
#phoneNumber {
}
*/

/* CSS manipulation of our Submit button*/
#submit {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:70px;
    font-family: 'Ruluko', sans-serif;
    font-size:12px
    
}

#title {
	float:none;
}