#details {
	min-height: 80vh;
	background: linear-gradient(to bottom, #f4cce9, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
}

.match_report {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
}

.match_report span {
	background-color: teal;
	border-radius: 4px;
	padding: 0.5rem 1rem;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

@media screen and (max-width: 576px) {
	.match_report span {
		font-size: 13px;
		padding: 5px 10px;
	}
}

/* match_boundaries */

.match_boundaries {
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.171);
}

.match_boundaries .left {
	width: 50%;
}

.match_boundaries .right {
	width: 50%;
}
