/*********************************************

Here is a description of any special CSS used.
In this case it's just padding and margin to 0
so the canvas is flush with the top left corner.

**********************************************/

@font-face {
  font-family: font1;
  src: url('assets/font.ttf');
}

#text {
  font-family: font1;
  src: url('assets/font.ttf');
  font-size: 2rem;
  word-wrap: break-word;
}

#title {
  font-family: font1;
  src: url('assets/font.ttf');
  font-size: 2.3rem;
  word-wrap: break-word;
}

.button {
  font-family: font1;
	display: inline-block;
  margin: 0;
  padding: 0.75rem 1rem;
	border: 0;
	border-radius: 0.317rem;
	background-color: #000000;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
  line-height: 1.5;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
}

.button:active {
	box-shadow: inset 0 3px 4px hsla(0, 0%, 0%, 0.2);
}

.button:focus {
	outline:  thin dotted #000000;
	outline-offset: -2.5px;
}

button:disabled,
button[disabled]{
  	opacity: 0.5;
}
