/*Simple page that it goes to after clicking the submit button on form, doesn't actually do anything*/
* {
	margin: 0;
	padding: 0;
}
/*Background color for main page*/
html{
    background-color: rgb(194, 241, 226);
    font-family: sans-serif;
}
/*Centers the heading and makes it more readable*/
h1{
    text-align: center;
    padding: 5%;
    line-height: 150%;
}