header {
	background-color: white;
}

@media screen and (min-width: 801px) {
	.only-narrow {
		display: none;
	}
}
@media screen and (max-width: 80px) {
	.only-wide {
		display: none;
	}
}

main {
	background-color: Black;
	color: white;
	background-image: url(history_2023_bg_27th.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

footer {
	background-color: white;
}

main table,
main th,
main td {
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	color: white;
	border: solid 1px white;
}

main th {
	background-color: gray;
}

.content {
	position: relative;
	max-width: 1200px;
	padding: 0 50px;
}

.info {
	position: relative;
	padding: 40px 0;
}

.info .match {
	text-align: center;
}

.info p {
	text-align: center;
}

.summary {
	position: relative;
	width: 100%;
	padding: 50px 0;
}

.summary .team {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%
}

.summary .team p {
	width: 20%;
	text-align: center;
	font-size: 3.5em;
	font-family: 'Arial', sans-serif;
}

.summary .score {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	width: 48%;
	height: 100%
}

.summary .score .total {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.summary .score .total p {
	margin: 0;
	font-size: 3em;
	font-family: 'Arial Black', sans-serif;
}

@media screen and (min-width: 801px) {
	.summary .score .half {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		width: 50%;
		table-layout: fixed;
		empty-cells: show;

		border-collapse: collapse;
		border-spacing: 0;
	}
}

@media screen and (max-width: 800px) {
	.summary .score .half {
		width: 100%;
		margin-top: 100px;
		table-layout: fixed;
		empty-cells: show;

		border-collapse: collapse;
		border-spacing: 0;
	}
}

.summary .score .half tbody td {
	text-align: center;
}

@media screen and (min-width: 801px) {
	.detail {
		position: relative;
		padding-top: 50px;
	}
}

@media screen and (max-width: 800px) {
	.detail {
		position: relative;
		padding-top: 150px;
	}
}

.detail .point {
	width: 75%;
	margin: auto;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

.detail .point thead th {
	background-color: gray;
}

.detail .point tbody td {
	text-align: center;
}

.stats {
	position: relative;
	padding: 100px 0;
}

.stats .data {
	width: 60%;
	margin: 0 auto;
	table-layout: fixed;
}