body {
	margin: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Comic Sans MS';
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

#canvas {
	background: rgba(0, 0, 0, 0.03);
	flex-shrink: 1;
}

#objective {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-weight: bold;
	color: #212121;
	transition: opacity 0.1s linear;
	pointer-events: none;
	text-align: center;
}


#controls {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

#buttonHolder {
	height: 100%;
	transition: opacity 0.2s ease-in-out;
}

#buttonHolder > button {
	background: none;
	border: none;
	outline: none;
	height: 100%;
}

#buttonHolder > button > svg {
	height: 30px;
}

#send > svg {
	fill: #FFC107;
	margin-left: 10px;
}

#undo > svg {
	fill: #FFC107;
	margin-right: 10px;
}

#resizer {
	display: none;
}

#spinner {
	pointer-events: none;
	opacity: 0;
	position: absolute;
	height: 100%;
	transform: translateX(35px);
	transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.2s ease-in-out;
}

#result {
	position: absolute;
	pointer-events: none;
	height: 100%;
	width: 100%;
	text-align: center;
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}

#result > span {
	display:block;
}

#result > span:nth-child(1) {
	font-size: 160%;
}

#result > span:nth-child(2) {
	font-size: 80%;
}




.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #FFC107;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
