@charset "UTF-8";

body {
	background-color: gray;
	font-family: "Poppins", "Montserrat", "Trebuchet MS", Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: inherit;
	color: rgb(163, 163, 163);
}

div {
	border-color: red;
	border-style: solid;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
}

#mainDiv {
	width: 750px;
	background-color: white;
	margin: auto; /* centers the div horizontally */
	text-align: center; /* centers text for all descendants */
}

/* Extras */
a:visited{color:#888}
a:hover{color:#000}
a{color:#444;text-decoration:none;}
p{margin-bottom:.3em;}