
     		/* Add a universal font for entire web page */
   		*{
   			font-family:Lucida Handwriting,Script MT italic, cursive;
   			font-size: 16px
   			font-style: italic, Bold;
   			text-align: center;
   			background-color: #a346a3;
   			color: white;
   			margin: 0 auto;

   		}
		.button {
		  background-color: #BB00BB; /* Purple */
		  border: none;
		  color: white;
		  padding: 15px 32px;
		  text-align: center;
		  text-decoration: none;
		  display: inline-block;
		  font-size: 16px;
		  margin: 4px 2px;
		  cursor: pointer;
		  -webkit-transition-duration: 0.4s; /* Safari */
		  transition-duration: 0.4s;
		}

		.button2:hover {
		  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
		}   
/* This will make the header 'sticky' */
		header{
			position:  sticky;
			top: 0;
		}

/* Creates a footer class for footer text at bottom of web page */
		.footer {
			position: fixed;
			text-align: center;
			bottom: 0px;
			width: 100%;
			font-size: 10px;


		}

		.titleFont {
			font-size: 22px;
			font-style: bold;
			color: black;
		}
