/* 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." */

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}

body
{
  background-color: #000000;
  color: #ffffff;
  font-family: "Courier Prime", monospace;
}

myButton
  {
	box-shadow: 1px 1px 0px 0px #ed91a0;
	background-color:#424242;
	border-radius:4px;
	border:1px solid #ffff00;
	display:inline-block;
	cursor:pointer;
	color:#00ffff;
	font-family:Courier New;
	font-size:12px;
	padding:4px 20px;
	text-decoration:none;
	text-shadow:2px 1px 0px #8317ff;
}

myButton:hover
{
  background-color:#757575;
}

myButton:active
{
  position:relative;
  top:1px;
}