html{
	height:100%;
}


body {
	font-family: sans-serif;
	-webkit-transition-duration: 1.2s;
	-moz-transition-duration: 1.2s;
	transition-duration: 1.2s;
	background-repeat:no-repeat;
	background-size:cover;
	line-height: 1.5em;
}

a{
	text-decoration: none;
}

a:visited{
	color: #0000EE;
}

[contenteditable]:focus {
    outline: 0px solid transparent;
}

button {
	outline: none;
	color: #333;
	background: #fff;
	font-size: 16px;
	border: 1px solid #EAF2FE;
	border-radius: 4px;
	padding: 8px 10px 12px 14px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 238, 0.2);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
	margin: 12px 6px 0px 0px;
}

button:active {
	color: #313131;
}

button:hover{
	background: #EAF2FE;
	color: #0000ee;
}

.btn {
	width: 150px;
}

.btn-left {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	width: 100px;
}

.btn-right {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	width: 50px;
}

.circle {
	min-width: 30px;
	min-height: 30px;
	background: #fff;
	/* reduced margin to keep circles on same line on mobile */
	margin: 3px;
	border-radius: 32px;
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.circle:active {
	box-shadow: 0px 2px 10px -4px rgba(0, 0, 0, 0.75);
	transform: scale(1.1,1.1);
	border-color: #000;
	border: 4px;
}
.circle:focus {
	box-shadow: 0px 2px 10px -4px rgba(0, 0, 0, 0.75);
	-webkit-transform: scale(1.5,1.5);;
	-webkit-transition: -webkit-transform 0.3s ease;
	-moz-transform: scale(1.5,1.5);;
	-moz-transition: -moz-transform 0.3s ease;
	transform: scale(1.5,1.5);
	transition: transform 0.3s ease;
}

.toasty {
	background: rgba(0, 0, 0, 0.7);
	font-family: monospace;
	/*mobile first approach*/
	padding: 4px;
	margin-left: 7px;
	margin-right: 7px;
	/***/
	color: #fff;
	border-radius: 20px;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.bodytext {
	min-height: 320px;
	font-size: 1em;
	display: block;
	border-radius: 4px;
	padding: 12px 12px 12px 12px;
	background-color: rgba(0, 0, 0, 0);
	transition: .2s;
}

.bodytext:hover{
	background-color: #EEF4F5;
}

.box{
	width: 600px;
	text-align:left;
	padding: 50px 50px 40px 50px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #000;
  margin: auto;
	margin-top: 30px;
}

.feather {
  width: 20px;
  height: 20px;
	margin: 4px 8px -4px 2px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.focus {
	box-shadow: 0px 2px 10px -4px rgba(0, 0, 0, 0.75);
	-webkit-transform: scale(1.5,1.5);;
	-webkit-transition: -webkit-transform 0.3s ease;
	-moz-transform: scale(1.5,1.5);;
	-moz-transition: -moz-transform 0.3s ease;
	transform: scale(1.5,1.5);
	transition: transform 0.3s ease;
}


.titletext{
	vertical-align: middle;
	display: block;
	font-size: 2em;
	border-radius: 4px;
	padding: 16px 14px 16px 12px;
	background-color: rgba(0, 0, 0, 0);
	transition: .2s;
	margin-bottom: -20px;
}

.titletext:hover{
	background-color: #EEF4F5;
}



.option{
		font-family: monospace;
		font-size: 16px;
		display: inline;
}

.whichfont{
	color: #333;
	line-height: 1.7em;
	border-top: 1px solid #eee;
	padding: 20px 12px 0px 12px;
	margin: 20px 0px 0px 0px;
}

.buttons{
	padding-left: 10px;
}

/* added media queries for larger screens */

@media (max-width:700px){
	.box{
		padding: 20px 20px 30px 20px;
		width: auto;
		margin: 20px 10px 10px 10px;
	}

	.bodytext{
		height: auto;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.titletext{
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.whichfont{
		margin-top: 20px;
	}

	.circle {
	min-width: 32px;
	min-height: 32px;
	background: #fff;
	margin: 5px;
	}
	.toasty {
	padding: 7px;
	margin-left: 7px;
	margin-right: 7px;
	}

}
