


#viewport{
	height: 904px;
	width: 904px;
}

/* Game Info Display */
#gameInfo {
    position: relative;
	width: 100%;
    float: left;
	display: block;
	justify-content: center;
	padding: 15px;
	border-radius: 15px;
	margin: 0;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.info-item {
    position: relative;
    width: 50%;
    float: right;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
}

.info-item .label {
	font-size: 44px;
	font-weight: normal;
	margin-bottom: 5px;
	opacity: 0.9;
}

.info-item span:last-child {
	font-size: 52px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Timer warning when low */
#timerDisplay.low-time {
	color: #ff4444;
	animation: pulse 0.5s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}
