* {
    padding: 0px;
    margin: 0px;
}

.content {
    box-shadow: whitesmoke 0px 0px 2px;
    border: white 1px solid;
    width: 95%;
    margin: auto;
}

header {
	background-image: url("../img/banner.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 95vh;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

section {
    width: 100%;
}
section p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
section h1 {
    color: whitesmoke;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 35px;
    text-align: center;
    padding: 5px;
}


/***********FORM********/

form {
    background:white;
    border-radius: 15px;
    box-shadow: black 0px 0px 2px;
    padding: 15px;
    margin: auto;
    width: 80%;
}
form input {     
    background:white;
    border: black 2px solid;
    border-radius: 5px;
    color: black;    
    font-size: 25px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: all 300ms;
    width: 80%;
}
form input[type="submit"] {
    background:black;
    border: 3px white solid;
    border-radius: 15px;
    cursor: pointer;
    color:white;  
}
form input[type="submit"]:hover {
    background:white;
    border: 3px black solid;
    border-radius: 35px;
    color:black; 
} 
form label {
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
