/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@charset "UTF-8";

:root{
	--border: #FF6200
}

h1{
	margin: 0 0 0 0;
}

h3{
	margin: 0 0 0 0;
}

body {
	background-color: #162323;
	color: #FFECCF;
	font-family: Bahnschrift;
}

header {
	text-align: center;
	border:3px solid var(--border);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	max-width: 872px;
	padding: 5px;
}

main, nav{
	border:3px solid var(--border);
	
	margin-right:5px;
	padding: 10px;
}

nav{
	margin-left: auto;
	width:100px;
	height:auto;
}

main{
	width:731px;
	margin-right: auto;
}

.flex{
	display:flex;
}


/*
	cool colorce
	#D7FF0F arctic lime
	#162323
	#FFECCF
	#FF6200 safety orange blaze orange
*/

/*---link styling---*/

a {
	color: #D7FF0F;
}

a:link{
	
}

a:visited{
	
}

a:hover{
	
}

a:active{
	
}
