/*Style all p tags*/
p{
    font-size:26px;
    color:white;
    text-align:left ;
    padding-right:50px;
    padding-left:50px;
}

#header p{
    font-size:24px;
}

/*style all header tags*/
.center{
          position: absolute;
    width: 1000px;
    height: 500px;
    top: 25%;
    left:27.5%;
    margin-left: -50px; /* margin is -0.5 * dimension */
    margin-top: -25px; 
}

h1{
    font-size:44px;
    text-align: center;
    color:white;
    padding-top:100px;
}

a{
    text-decoration: underline;
    color:white;
    
}

body{
    background-color:gray;
}

img{
    color:white;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    background-color:black;
    opacity:.5;
}

.navbar a{
    float:left;
    display:block;
    text-align:center;
    padding:14px 16px 14px 16px;
}
.navbar a:hover{
    background:#ddd;
    color:black;
}
li{
    padding:5px 14px;
}
h3{
    padding-top:100px;
}

	.form {
		margin: 0 auto;
		width: 200px;
        height:auto;
        padding:10px;
	}
	.form label{
		display: inline-block;
		text-align: center;
		float: left;
        padding:10px 50px;
	}
	.form input{  
		display: inline-block;
		text-align: center;
		float: right;
	}
