#timer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
	font-size: 48px;
}

.calendar-sheet {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #111111;
	padding: 20px;
	margin-right: 10px;
	border-radius: 10px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.1s linear;
}

.calendar-sheet.animate1 {
	transform: scaleY(95%);
}

.calendar-sheet.animate2 {
	transform: scaleY(105%);
}

.calendar-sheet span {
	color: #FFFFFF;
	font-size: 72px;
	font-weight: bold;
}

.calendar-sheet small {
	color: #999999;
	font-size: 18px;
}

@media (max-width: 840px) {
	.calendar-sheet {
		padding: 10px;
	}

	.calendar-sheet span {
		font-size: 24px;
	}

	.calendar-sheet small {
		font-size: 12px;
	}
}