html {
	background-color: #333;
	width: 100%;
	height: 100%;
	color: #FFF;
	font: 16px/1.2em 'Thasadith', sans-serif;
	overflow: hidden;
}

body {
	height: 100%;
	margin: 0px;
	position: relative;
}

#container {
	height: 100%;
}

#clock.welcome {
	background: url(touch.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	bottom: 20%;
	top: auto;
	transform: translateY(0%);
	height: 100px;
}
#clock {
	font-size: 300px;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-60%);
	user-select: none;
}

.timeout {
	background: #B00;
	font-size: 60px !important;
	font-weight: bold;
}

#settingsMessage {
	position: absolute;
	font-size: 16px;
	bottom: 20px;
	width: 100%;
	text-align: center;
	opacity: 0;
	user-select: none;
}

#settingsMessage img {
	width: 24px;
	vertical-align: middle;
	margin-left: 10px;
}

#settings {
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, .5);
	padding: 0px 20px;
	overflow: hidden;
	box-sizing: border-box;
	height: 0;
	vertical-align: middle;
	transition: height .3s, padding .3s;
}

#settings.active {
	padding: 20px;
	height: 70px;
}

#settings input {
	background: #333;
	color: #FFF;
	padding: 5px;
	border:  none;
	border-radius: 5px;
	margin: 0 10px;
	width: 30px;
	font: 16px/1.2em 'Thasadith', sans-serif;
}

#settings button {
	padding: 0;
	background: none;
	border: none;
	color: #FFF;
	font: bold 16px/1.2em 'Thasadith', sans-serif;
	letter-spacing: 2px;
	position: absolute;
	right: 20px;
	height: 30px;
}