@font-face
{
  font-family: 'Courier New';
  src: url('couriernew.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body
{
  background-color: black;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  user-select: none;
}

#canvasContainer
{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#canvas
{
  image-rendering: pixelated;
  max-width: 95%;
}

#uiContianer
{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

input
{
  font-family: "Courier New", Courier, monospace;
  mix-width: 200px;
  width: 35%;
  max-width: 400px;
  background: #222;
  color: white;
  border: 1px solid white;
  font-size: 14px;
  padding: 1px 4px;
  margin: 16px;
  outline: none;
}

button
{
  font-family: "Courier New", Courier, monospace;
  position: absolute;
  right: 0;
  background-color: #222;
	color: white;
	border: 1px solid white;
	font-size: 14px;
	padding: 1px 4px;
	margin: 16px;
	cursor: pointer;
}

button:hover
{
  background: white;
  color: black;
}

#generateButton
{
  margin-right: 102px;
}

#header
{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  font-size: clamp(9px, 1vw, 14px);
  color: white;
  text-shadow: white 0 0 10px;
}

#title
{
  position: absolute;
  left: 0;
  margin: 16px;
}

#created
{
  position: absolute;
  right: 0;
  margin: 16px;
}

a
{
  color: white;
  cursor: pointer;
  position: relative;
  color: #5050F2;
  text-shadow: #9494EB 0 0 10px;
	top: 0px;
}

a:hover
{
  top: -2px;
}