@charset "ISO-8859-1";
/* CSS Document */

body {
	background: #333;
	font: 16px Arial, sans-serif;
	color: lightgrey;
	text-shadow: 0px 2px 2px black;
	display: flex;
	flex-direction: column; /* Updated: set flex direction to column */
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
}

h1{
	color: #FFEB00;
	font-size: 40px;
   letter-spacing: 3px;
}

h1, h2, h3 {
	text-align: center;
}

p, h1, h2 {
	width: 800px;
}

 ul {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items vertically */
  }

#canvas_holder {
	margin: 0 auto;
	width: 800px;
	height: 400px;
	background: #FFF;
}

#canvas {
}

#feedback {
}
