body {
	margin: 0; padding: 0;
	background-color: #333;
	font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

#clock{
	border: 1px dotted #666;
	width: 6em;
	background: rgba(0, 0, 0, 0.7);
	border-radius: .15em;
	font-size: 1.5rem;
	height: 1.8rem;
	color: #fff;
	text-overflow: '';
	text-indent: 0.01px;
	position: absolute;
	/*background: #f60;*/
	text-align: center;
	text-align-last: center;
	padding: .1em;
	padding-right: .45em;
	top: 3.5rem;
	left: 1rem;
}

#day{
	border: 1px dotted #666;
	width: 6em;
	background: rgba(0, 0, 0, 0.7);
	border-radius: .15em;
	font-size: 1.5rem;
	height: 1.8rem;
	color: #fff;
	text-overflow: '';
	text-indent: 0.01px;
	position: absolute;
	/*background: #f60;*/
	text-align: center;
	text-align-last: center;
	padding: .1em;
	padding-right: .45em;
	top: 1rem;
	left: 1rem;
}

#menu{
	border: 1px dotted #666;
	width: 10em;
	background: #ccc;
	border-radius: .15em;
	font-size: 1rem;
	height: 12rem;
	color: #333;
	text-overflow: '';
	text-indent: 0.01px;
	position: absolute;
	/*background: #f60;*/
	text-align: center;
	text-align-last: center;
	padding: .1em;
	padding-right: .45em;
	bottom: 1rem;
	left: 1rem;
}

#box {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 1em;
}

#box span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#green {
	background: #00B84C
}

#lila {
	background: #A73BFF;
}

#pink {
	background: #C70000;
}

#red {
	background: #FF00D0;
}

#orange {
	background: #FFAC12;
}

#brown {
	background: #964400;
}

.square {
	height: 1em;
	width: 1em;
	margin-right: .4em;
}

#box>span:nth-last-of-type(1), #box>span:nth-last-of-type(2) {
	margin-top: .5em;
}

#restart {
	font-size: 115%;
}

