body>section[id="home"]{
	display:grid;
	grid-gap:10px;
	margin:10px 0 0;
}

h1{
	float:left;
	clear:left;
	position:relative;
	font-size:2.5rem;
	color:#fff;
	margin:0;
	text-shadow:0 0 5px #000;
}

@media only screen and (min-width:1800px){
	body>section[id="home"]{
		grid-template-columns: repeat(4, 1fr);
	}

	h1{
		grid-column:1/5;
		grid-row:2;
	}

	#tournaments{
		grid-column:1/5;
		grid-row:3;
		grid-template-columns: repeat(4, 1fr);
	}

	#info{
		grid-column:1/5;
		grid-row:4;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width:900px) and (max-width:1800px){
	body>section[id="home"]{
		grid-template-columns: repeat(2, 1fr);
	}

	h1{
		grid-column:1/3;
		grid-row:2;
	}

	#tournaments{
		grid-column:1/3;
		grid-row:3;
		grid-template-columns: repeat(2, 1fr);
	}

	#info{
		grid-column:1/3;
		grid-row:4;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width:900px){
	body>section[id="home"]{
		grid-template-columns: repeat(1, 1fr);
	}

	h1{
		grid-column:1;
		grid-row:2;
	}

	#tournaments{
		grid-column:1;
		grid-row:3;
		grid-template-columns: repeat(1, 1fr);
	}

	#info{
		grid-column:1;
		grid-row:4;
		grid-template-columns: repeat(1, 1fr);
	}
}

#tournaments{
	float:left;
	clear:left;
	margin:0;
	padding:0;
	list-style:none;
	display:grid;
	grid-gap:10px;
}
#tournaments>li{
	width:100%;
	height:300px;
	background:rgba(0, 0, 0, 0.65);
	position:relative;
}

#tournaments>li>a{
	width: 100%;
	height: 100%;
	float: left;
	clear: left;
	display: block;
	line-height: 300px;
	position: absolute;
	z-index: 3;
}

#tournaments>li>a:hover{
	outline:1px solid #fff;
}

#tournaments>li>a>img{
	max-width: 100%;
	max-height: 100%;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 10px;
	z-index: 1;
}

#tournaments>li>a>span{
	position:absolute;
	top:35%;
	left:0;
	width:100%;
	text-align:center;
	font-size:4rem;
	color:#fff;
	font-weight:bold;
	text-shadow:0 0 5px #000;
}

#info{
	float:left;
	clear:left;
	margin:70px 0 0 0;
	padding:0;
	list-style:none;
	display:grid;
	grid-gap:10px;
}

#info>li>ul{
	float:left;
	clear:left;
	margin:10px 0 0;
	padding:0 0 0 18px;
	list-style:square;
}

#info>li{
	box-sizing:border-box;
	width:100%;
	float:left;
	clear:left;
	padding:15px;
	margin:0 0 45px 0;
	border:1px solid #000;
	font-size:1.2rem;
	background:rgba(0, 0, 0, 0.65);
	color:#fff;
	position:relative;
}

h2{
	float:left;
	clear:left;
	position:relative;
	margin:-70px 0 10px;
	font-size:2.5rem;
	color:#fff;
	text-shadow:0 0 5px #000;
}

#info>p{
	margin:0;
}

#features>ul{
	float:left;
	clear:left;
	margin:0;
	padding:0 0 0 25px;
	list-style:square;
}
#features>ul>li{
	float:left;
	clear:left;
	margin:2px 0;
}
#features>ul>li>a{
	color:#fff;
	text-decoration:underline;
}

#tournamentLogos>ul{
	list-style:none;
	padding:0;
	margin:0;
	width:100%;
}
#tournamentLogos>ul>li{
	display:grid;
	grid-gap:10px;
	grid-template-columns: 20% 80%;
	justify-content: center;
	margin:20px 0;
}
#tournamentLogos>ul>li>img{
	width:64px; 
	margin:0 auto;
	box-sizing:border-box;
}
#tournamentLogos>ul>li>div{
	float:left;
	margin:5px 0 0;
}
#tournamentLogos>ul>li>div>span,
#tournamentLogos>ul>li>div>p{
	float:left;
	clear:left;
}
#tournamentLogos>ul>li>div>p{
	margin:10px 0 5px;
}