@charset "utf-8";
/* CSS Document */

body 
{
	background: #d2faf7; /* a knowticable difference to the background that doesnt overlap with the text colour or background colour */
	display: flex;
	justify-content: center;
	align-content: center;
	height: 100vh; /* While i could use a percentage to position the text i beleave that due to the small amount there would be no problemss with this method  */
	flex-direction: column;
	
	
}
* 
{ 
	font-family: sans-serif;
	box-sizing: border-box;
	
}
form 
{
	align-content: center;
	width: 500px;
	border: 2px soild #ccc;
	padding: 30px;
	background: #e6d073; /* a knowticable difference to the background that doesnt overlap with the text colour or background colour */
	border-radius: 15px;
	
}
navbar 
{
	
}


