@charset "utf-8";

:root {
	--primary-color: #0088FF;
	--secondary-color: white;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background-image: url("background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-family: sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}

.timeContainer {
	width: 60%;
	text-align: center;
}

.top {
	background-color: var(--primary-color);
	color: var(--secondary-color);
}

.bottom {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

h1, h2 {
	margin: 0;
}

h1 {
	font-size: 150px;
}

h2 {
	font-size: 100px;
	font-weight: normal;
}

.errContainer {
	display: none;
	background-color: red;
	width: 100%;
	height: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}
