html {
	background: black;
	font-size: 25px;
}

#progressbar {
	width: 100%;
	height: 2px;
	display: none;

	position: fixed;
	top: 5;
	left: 0;

	background: #0af;
	box-shadow: 1px 2px 3px #6bf;
}
#clockfield{
	text-align: center;
}

#clock {
	text-align: left;
	display: inline-block;
	padding: 2em;
	margin: 1em 3em;
	background: #222;
	color: grey;
	border: 1px solid #333;
	border-radius: .5em;
	font-family: 'Courier New', monospace;
	word-spacing: -1.1em;
	letter-spacing: 0.5em;
	white-space: nowrap;
}
#clock > .word {
	text-align: center;
	text-transform: uppercase;
	font-size: 2em;
	word-spacing: 1em;

	opacity: .1;

	transition: all 3s;
}

#clock > .word.on {
	opacity: 1;
	/* color: #0af; */
	/* text-shadow: 0 0 5px #6bf; */
}
.dates{
	padding: 2em;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.8em;
	/* text-shadow: 0 0 5px #6bf; */
	font-family: 'Courier New', monospace;
	word-spacing: 0em;
	letter-spacing: .2em;
	white-space: nowrap;
		transition: all 3s;
	/* color: #0af; */
}
#showdates{
	padding-bottom:1.8em;
	padding-top:1.8em;
	display: inline-block;
	background: #222;
	border: 1px solid #333;
	border-radius: .5em;
}
.button {
    background-color: #222; /* Green */
	font-family: 'Courier New', monospace;
	border: none;
    color: gray;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1em 0em 0em;
	padding: 1em;
    cursor: pointer;
}

.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}
