* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	background: black;
	display: flex;
	flex-direction: column;
	/* justify-content: center;
	align-items: center; */
}

.clockdiv {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.clock {
	height: 20vh;
	color: white;
	font-size: 22vh;
	font-family: sans-serif;
	line-height: 20.4vh;
	display: flex;
	position: relative;
	/*background: green;*/
	overflow: hidden;
}

.clock::before,
.clock::after {
	content: "";
	width: 7ch;
	height: 3vh;
	background: linear-gradient(to top, transparent, black);
	position: absolute;
	z-index: 2;
}

.clock::after {
	bottom: 0;
	background: linear-gradient(to bottom, transparent, black);
}

.clock > div {
	display: flex;
}

.tick {
	line-height: 17vh;
}

.tick-hidden {
	opacity: 0;
}

.move {
	animation: move linear 1s infinite;
}

@keyframes move {
	from {
		transform: translateY(0vh);
	}
	to {
		transform: translateY(-20vh);
	}
}

/* Side Menu */
.sidebar {
	height: 100%;
	width: 100px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.5);
	overflow-x: hidden;
	padding-top: 20px;
	align-items: center;
	text-align: center;
}

.menu-button {
	flex-direction: column;
	display: inline-flex;
	margin: 25px 25px;
	background: none;
	border: none;
}

.image-size {
	width: 50px;
	height: 50px;
	font-size: 50px;
	text-align: center;
	vertical-align: middle;
	color: black;
}

.image-size:hover {
	color: #36373b;
}

.image-selected {
	color: #1a66da;
}

.image-selected:hover {
	color: #17529e;
}
