#my_modal {
	Width: 400px;
	Height: 400px;
	Background: rgba(240, 184, 94, 0.75);
	Box-sizing: border-box;
	border-radius: 20px;
	/* for inside padding */
	Padding: 10px;
	text-align: center;

	/* for center */
	Position: fixed;
	top: 70%;
	left: 50%;
	Transform: translate(-50%, -50%);

	/* for hider */
	display: none;
}

#my_modal h2 {
	margin: 0px;

}

#show_time {
	font-size: 24px;
	color: red;
	display: none;
}