a {
	text-decoration: none;
	color: black;
}
.full-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 1700px;
	background-color: rgba(0, 0, 0, 0);
	z-index: 1;
	overflow: hidden;
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0);
	z-index: 1;
	transform: translateY(395px) translateX(-29px) perspective(300px) rotateX(30deg) rotateY(-10deg) rotateZ(15deg);
}
.clock-outer {
	width: 420px;
	height: 420px;
	border: 20px solid gold;
	border-radius: 50%;
	position: absolute;
	background: black;
	z-index: 1;
}
.clock {
	width: 400px;
	height: 400px;
	border: 2px solid black;
	border-radius: 50%;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	position: absolute;
	background: white;
	z-index: 2;
}
.clock .number {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	z-index: 6;
}
.clock .hand {
	--rotation: 10;
	position: absolute;
	background-color: black;
/*	border: 1px solid white;*/
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	left: 50%;
	bottom: 50%;
	transform-origin: bottom;
	transform: translateX(-50%) rotate(calc(var(--rotation) * 1deg));
	display: none; /*hide until time is set*/
	z-index: 10;
}
#small-circle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: red;
	left: 50%;
	bottom: 48%;
	transform: translateX(-50%);
	z-index: 12;
}
.clock .hand.minute {
	height: 40%;
	width: 5px;
	z-index: 11;
}
.clock .hand.second {
	height: 48%;
	width: 3px;
	background: red;
	z-index: 12;
}
.clock .hand.hour {
	height: 30%;
	width: 10px;
	z-index: 10;
}
.leftmoondate-container {
	display: flex;
	position: absolute;
	bottom: 44%;
	left: 12%;
	border: 2px solid black;
	border-radius: 10px;
	width: 80px;
	height: 50px;
	font-size: 1.3rem;
	z-index: 3;
}
.leftmoondate-container #lunar_month {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 50px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
.leftmoondate-container #lunar_date {
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid black;
	width: 40px;
	height: 50px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
.container-2 {
	display: flex;
	position: absolute;
	bottom: 50%;
	left: 68%;
	border: 2px solid black;
/*	border-radius: 10px;*/
	width: 80px;
	height: 40px;
	font-size: 1.3rem;
	z-index: 3;
}
.container-2 #date {
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid black;
	width: 40px;
	height: 40px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
.container-2 #month {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
.container-3 {
	display: flex;
	position: absolute;
	bottom: 39.5%;
	left: 68%;
	justify-content: center;
	border: 2px solid black;
	align-items: center;
	width: 80px;
	height: 40px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-size: 1.3rem;
	z-index: 10;
}
.container-3 #year {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
.container-4 {
	display: flex;
	position: absolute;
	bottom: 18%;
	left: 43.5%;
	justify-content: center;
	border: 2px solid black;
	align-items: center;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-size: 1.3rem;
	z-index: 10;
}
.container-4 #weekday {
	display: flex;
	justify-content: center;
	align-items: center;
	float: center;
	text-align: center;
	width: 80px;
	height: 30px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: none;
	z-index: 4;
}
#moonphase-window {
	display: flex;
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 4px solid gray;
	background-color: #000066;
	top: 12.5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	overflow: hidden; /*hide the moon when it's outside the window*/
}
#moon {
	display: flex;
	position: absolute;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	border: 4px solid gold;
	background-color: gold;
	display: none;
	--rotation: 0;
	transform-origin: 50% 143px;
	transform: rotate(calc(var(--rotation) * 1deg));
	z-index: 2;
}
.number1 {
	transform: rotate(30deg);
}
.number2 {
	transform: rotate(60deg);
}
.number3 {
	transform: rotate(90deg);
}
.number4 {
	transform: rotate(120deg);
}
.number5 {
	transform: rotate(150deg);
}
.number6 {
	transform: rotate(180deg);
}
.number7 {
	transform: rotate(210deg);
}
.number8 {
	transform: rotate(240deg);
}
.number9 {
	transform: rotate(270deg);
}
.number10 {
	transform: rotate(300deg);
}
.number11 {
	transform: rotate(330deg);
}