@font-face {
    font-family: 'BoneStd';
    src: url('../fonts/bone.woff2') format('woff2'),
         url('../fonts/bone.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Carrier';
    src: url('../fonts/Carrier.woff2') format('woff2'),
         url('../fonts/Carrier.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Carrier';
  src: url('../fonts/Carrier.eot') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

*{
	margin: 0;
	padding: 0;
}

input{
	color: inherit;
	font: inherit;
}

body{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.8;
}

#container{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	cursor: default;
	overflow: hidden;
	background: black;
	cursor: move;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#content{
	background: black;
	
	-webkit-transform-origin: left top;
	-webkit-transform: translateZ(0);
	-moz-transform-origin: left top;
	-moz-transform: translateZ(0);
	-ms-transform-origin: left top;
	-ms-transform: translateZ(0);
	-o-transform-origin: left top;
	-o-transform: translateZ(0);
	transform-origin: left top;
	transform: translateZ(0);
}

#settings{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 300px;
	background: white;
	padding: 20px;
	border: 5px solid black;
	box-sizing: border-box;
}

#settings > div{
	vertical-align: middle;
	text-align: center;

}

#settings > div > *{
	display: inline-block;
	vertical-align: middle;
}

#settings label{
	width: 100px;
}

button{
	padding: 6px 10px;
	margin: 2px;
	width: 30px;
	height: 30px;
}

#specimen-bones {
    width: 100%;
    height: 100%;
    font-family: "BoneStd", serif;
  color: white;
  font-size: calc(100px + 30vw);
  text-shadow: 0px 0px 0.03em black;
  text-transform: uppercase;
  position: absolute;
}

.bone {
    position: absolute;
}

#defaultCanvas0 {
  position: fixed;
  z-index: 9999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

#welcome {
	font-family: "Carrier", Courier New, Courier, monospace;
	font-size: 16px;
	line-height: 24px;
	
	text-align: center;
}

button {
	background:white;
	border-style: none;
	border: 1px solid black;
	outline: none;
	cursor: pointer;
	text-align: center;
	padding: 0;
}

button:hover {
	color: red;
	border: 1px solid red;
}

button:active {
	color: white;
	border: 1px solid white;
	background: black;
}

@media only screen and (max-width: 600px) and (min-width: 0px) {
  #settings{
	position: relative;
	margin: 20px auto;
	width: 90%;
	top: 0;
	right: 0;
	padding: 10px;
} #welcome {
	font-size: 14px;
	line-height: 18px;
} button:hover {
	color: black;
	border: 1px solid black;
	background-color: white;
} button:active {
	color: white;
	border: 1px solid white;
	background-color: black;
}

}