/*CSS is how u can add style to ur website--like colors, fonts, and positioning of the HTML content. To learn how to do something use Google OR https://neocities.org/tutorials.*/
/*UrBling Orange: #fcba03 or 252, 186, 3 */

@font-face {
		font-family: 'helveticaregular';
		src: url('fonts/Helvetica/helvetica-webfont.woff2') format('woff2'),
			 url('fonts/Helvetica/helvetica-webfont.woff') format('woff');
		font-weight: normal;
		font-style: normal;
	}
	
body {
		background-color: #ffe3d7;
		font-family: 'Courier New', Arial;
		font-size: 15px;
		color: black;
		margin: auto;
		width: 1130px;
	}

/*homepage START*/
.wrapper {
	display: grid;
	grid-template-columns: 200px 800px 100px;
	justify-content: center;
	margin: 0 auto;
	padding: 2.5%;
}

/* for header... LATER*/


/*just main three columns right now*/
.left {
	width: 200px;
	background-color: yellow;
	border: 0px;
	padding: 0px;
}
	
.main {
	width: 800px;
  background-color: black;
}
	
.right {
	width: 100px;
	background-color: gray;
}
