/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

html, body {
	width: 100%;
	height: 100%;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

body {
	position: relative;
	background-color: #A3C11E;
	color: #202505;
	font-family: 'Open Sans', sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: rgba(255,255,255,0.6);
	text-decoration: underline;
}

h1 {
	z-index: 5;
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 1.8em;
	color: #92AD1A;
	font-weight: 300;
}

h1 span {
	position: relative;
	top: 0.4em;
	display: block;
	font-size: 0.5em;
	text-align: right;
	color: rgba(0,0,0,0.3);
}

.page-box {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	/*background-color: rgba(0,0,0,0.1);*/
}

.clock {
	position: absolute;
	width: 90%;
	height: 90%;
	top: 5%;
	left: 5%;
	border-radius: 50%;
	border: 7px solid #92AD1A;
	border-color: rgba(0,0,0,0.1);
}

.clock .second-hand {
	position: absolute;
	zoom: 1;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 50%;
	margin-left: -1px;
	/*border-bottom-right-radius: 50%;*/
	/*border-bottom-left-radius: 50%;*/
	background-color: rgba(0,0,0,0.1);
		-ms-transform-origin: 1px 1px;
	-webkit-transform-origin: 1px 1px;
			transform-origin: 1px 1px;
	transform: rotate(180deg);
}

.clock .center {
	display: none;
	position: absolute;
	top: 49.5%;
	left: 49.5%;
	width: 1%;
	height: 1%;
	border-radius: 50%;
	background-color: #92AD1A;
}

.time-left {
	position: absolute;
	top: 42%;
	left: 10%;
	width: 80%;
	padding: 4% 0;
	background-color: rgba(163,193,30,0.5);
}

.time-text {
	text-align: center;
	font-size: 4em;
	color: #000;
	color: rgba(0,0,0,0.1);
	font-weight: 300;
}

.time-form {
	opacity: 0.3;
	position: absolute;
	top: 100%;
	width: 100%;
	text-align: center;
	-webkit-transition: all 400ms;
			transition: all 400ms;
}

.page-box:hover .time-form {
	opacity: 1;
}

.time-form .input {
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: left;
}

.time-form .input label {
	display: block;
	margin-bottom: 2px;
	font-size: 0.8em;
	color: rgba(0,0,0,0.25);
}

.time-form input {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 5em;
	padding: 3px 4px;
	border: 1px solid #92AD1A;
	border-radius: 2px;
	background-color: transparent;
	color: rgba(0,0,0,0.25);
	outline: none;
}

.time-form input:focus {
	border-color: rgba(255,255,255,0.4);
	background-color: rgba(255,255,255,0.1);
	color: rgba(0,0,0,0.6);
}

.play-pause {
	position: absolute;
	width: 100%;
	bottom: 100%;
	text-align: center;
	color: #9DB91C;
	text-indent: 1px;
	-webkit-transition: all 500ms;
			transition: all 500ms;
}

.page-box:hover .play-pause {
	color: #92AD1A;
}

.play-pause i {
	cursor: pointer;
	background-color: #A3C11E;
}

.play-pause .fa-play {
	display: none;
}

.play-pause.paused .fa-play {
	display: inline;
}

.play-pause.paused .fa-pause {
	display: none;
}


.notes {
	opacity: 0.5;
	z-index: 5;
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 20%;
	color: #88A11A;
	font-size: 0.9em;
	text-align: right;
	line-height: 1.3;
	word-wrap: break-word;
	-webkit-transition: all 500ms;
			transition: all 500ms;
}

.notes:hover {
	opacity: 1;
}

.notes p {
	display: inline-block;
	margin-top: 0.4em;
}

.notes .links {
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: 0.7em;
	line-height: 1;
}


@media (max-width: 600px) {
	.time-text {
		font-size: 10vw;
	}

	.notes {
		width: 96%;
		top: 100%;
		right: 2%;
		bottom: auto;
		margin-bottom: 2%;
		text-align: center;
		font-size: 0.8em;
	}
}