#field {
	position: relative;
	width: 900px;
	height: 600px;
	/* border: 1px solid black; */
	background-color: #17bebb;
	margin-left: 0px;
	margin-top: 0px;
}

#line {
	position: absolute;
	left: 0px;
	width: 50%;
	height: 100%;
	border-right: 3px solid black;
	background-color: #d62246;
}

.player {
	width: 20px;
	height: 20px;
	border: 2px solid black;
	position: absolute;
}

.blue {
	background-color: #0acdff;
}

.blue.hasFlag {
	background-color: green;
}

.red {
	background-color: #f7717d;
}

.red.hasFlag {
	background-color: orange;
}

#testBlue {
	left: 0;
	bottom: 0;
}

#testRed {
	right: 0;
	bottom: 0;
}

.flag {
	position: absolute;
	top: 278px;
	width: 30px;
	height: 30px;
	background-color: white;
}

#redFlag {
	left: 30px;
}

#blueFlag {
	left: 841px;
}

.score {
	position: absolute;
	top: 0;
}

#redScore {
	left: 10px;
	font-size: 50px;
}

#blueScore {
	right: 10px;
	font-size: 50px;
}

#chat {
	width: 900px;
	margin-top: 10px;
}
#messages {
	list-style: none;
	margin: 0;
	padding: 6px;
	height: 120px;
	overflow-y: auto;
	border: 1px solid #000;
	background: #fff;
}
#messages li {
	padding: 2px 4px;
}
#chatForm {
	margin-top: 6px;
}
#chatForm input {
	width: 80%;
}

.chat-name {
	font-weight: bold;
	margin-right: 6px;
}

/* Mobile-only overlay message */
#mobileMessage {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* align-items: center; */
	/* justify-content: center; */
	background: rgba(255, 255, 255, 0.95);
	z-index: 9999;
	font-size: 48px;
}

@media (max-width: 1023px) {
	#field,
	#chat,
	h1 {
		display: none;
	}
	#mobileMessage {
		display: flex;
	}
}
