* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Sans-Serif;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: black;
}

.section-head {
	background-image: url(../img/hero-banner.jpg);
	background-size: cover;
	background-position: top;
	padding: 10%;
	text-align: center;
}

.kings-league-logo {
	width: 256px;
	margin: 0 auto 50px auto;
}

.section-head .title {
	font-size: 5vh;
	margin-bottom: 30px;
	font-weight: bold;
}

.section-head .subtitle {
	font-size: 3vh;
}

.section-video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}

.section-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.section-info {
	padding: 10%;
	background-color: #e85729;
	text-align: center;
}

.section-info .info {
	font-size: 3vh;
}

.section-teams {
	background-color: #fef9e0;
	text-align: center;
	padding: 10%;
}

.section-teams .subtitle {
	font-size: 2vh;
}

.section-teams .title {
	font-size: 3vh;
	font-weight: bold;
	margin-bottom: 30px;
}

.section-teams .teams {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 10px;
}

.section-twitch {
	padding: 10%;
	text-align: center;
}

.twitch-logo {
	width: 100px;
	margin: auto;
}

.section-twitch .title {
	font-weight: bold;
	font-size: 4vh;
	margin: 30px 0;
}

.section-twitch .subtitle {
	font-size: 3vh;
}

.section-networks {
	background-color: black;
	padding: 10%;
	text-align: center;
}

.section-networks .title {
	font-size: 3vh;
	font-weight: bold;
	margin-bottom: 30px;
	color: white;
}

.section-networks .networks {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.section-networks img {
	width: 30px;
}

.section-footer {
	background-color: black;
	padding: 10%;
	text-align: center;
	font-size: 14px;
}

.section-footer a {
	color: white;
}

.section-footer .contact {
	margin-bottom: 20px;
}

.section-footer .terms a:not(:last-child) {
	margin-right: 30px;
}