@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@media screen and (orientation: portrait) {
	.time-container {
		flex-direction: column;
	}

	strong,
	p {
		font-size: 10vw !important;
	}
}

* {
	padding: 0;
	margin: 0;

	font-family: 'Roboto';
	color: rgb(244, 244, 244);

	box-sizing: border-box;
}

body {
	height: 100vh;
	background-color: rgb(0, 0, 0);
}

.container {
	padding-block: 4vh;
	padding-inline: 4vw;

	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.container h4,
u {
	text-align: center;
	font-size: max(18px, 1.1vw);
	font-weight: 600;
	color: rgb(41, 41, 41);
}

.time-container {
	display: flex;
	gap: 2rem;
}

.time-container div {
	display: flex;
	gap: 1rem;
}

.time-container p {
	font-size: 4vw;
	font-weight: 300;
}

.time-container strong {
	font-size: 4vw;
	font-weight: 800;
}

.info-icon {
	position: absolute;
	right: 0;
	top: 0;

	width: 42px;
	margin: 16px;
	cursor: pointer;
}
