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

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.

**********************************************/
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Caption');

body
{
    background-color:#F5AA97;
}

@font-face {
  font-family: 'PT Sans Caption', sans-serif;
}

.text {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: bold;
  src: url('assets/font.ttf');
  font-size: 5.5rem;
  word-wrap: break-word;
}

.text2 {
  font-family: 'PT Sans Caption', sans-serif;
  src: url('assets/font.ttf');
  font-size: 2rem;
  word-wrap: break-word;
}

#title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 900;
  src: url('assets/font.ttf');
  font-size: 4rem;
  word-wrap: break-word;
}

.button {
  font-family: 'PT Sans Caption', sans-serif;
	display: inline-block;
  margin: 0;
  padding: 0.75rem 1rem;
	border: 0;
	border-radius: 0.317rem;
	background-color: tomato;
	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;
}
