@charset "utf-8";
/* CSS Document */

:root {
	--default-font-family: "Verdana", sans-serif;
	--default-font-size: 1.25rem;
	--theme_background: #1a1a1a;
	--theme_background_light: #494949;
	--theme_text: #f9f9f9;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;	 
	padding: 0px;
}

html{
	height: 100%;
	/* cursor: none;  */
}

body{
	font-family: var(--default-font-family);
	background: var(--theme_background);
	color: var(--theme_text);
	text-align: center;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	width: 100%;
	height: 100%;
}

.frame{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.time_date_box{
	display: flex;
	flex-direction: column;
	background: var(--theme_background_light);
	width: max-content;
	padding: 20px 80px;
	border-radius: 0 0 30px 30px;
}

.time_date_box h1{
	font-size: 3.5rem;
}

.time_date_box h2{
	font-size: 2.5rem;
}

.message_box{
	padding: 0 100px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 70%;
	text-transform: none;
	font-family: var(--default-font-family);
	color: var(--theme_text);
	font-size: 4.5rem;
	font-weight: 800;
	
}

.message_box p{
	white-space: pre-line;
}


