body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f2f2f2;
}

header {
	background-image: linear-gradient(0deg, #f2f2f2, #d21e1e8c);
    width: 100%;
    padding-top: 4px;
	text-align: center;
}

header img {
	max-width: 100%;
	height: auto;
}

header h1 {
	margin: 0;
	font-size: 2rem;
	color:#000
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

nav ul li {
	display: inline-block;
	margin-right: 1rem;
}

nav ul li a {
	color: #000;
	text-decoration: none;
	transition-duration: 0.5s;
}

nav ul li a:hover{
	color: #fff;
	transition: 0.5s;
}

section {
	padding: 2rem;
}

section h2 {
	margin-top: 0;
}

section p {
	margin-bottom: 1rem;
}

section a {
	background-color: #333;
	color: #fff;
	padding: 0.5rem 2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
}

section a:hover {
	background-color: #444;
}

iframe {
	width: 100%;
	height: 450px;
	border: 0;
	margin-bottom: 2rem;
}

.lineups {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.lineups li {
	flex-basis: 30%;
	margin-bottom: 2rem;
	text-align: center;
}

.lineups li img {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.location img{
	cursor:pointer;
}

footer {
	background-image: linear-gradient(0deg, #d21e1e8c, #f2f2f2);
	padding: 1rem;
	text-align: center;
	width:100%;	
	padding-top: 50px;
}

