/* set font family and size for the entire page */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* style a heading */
h1 {
  font-size: 48px;
  color: #000000;
  text-align: center;
}

/*h2 {
	font-size: 25px;
	color: #007bff;
}*/

/* navigation */
.topnav a {
  float: right;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #000000;
  color: black;
}

.topnav a.active {
  background-color: #000000;
  color: white;
}

/* style a link */
a {
  color: #007bff;
  text-decoration: none;
}
/* Heading */
	header {
  background-color: #000000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* set a background color for a section */
.section {
  background-color: #000000;
  padding: 20px;
  margin-bottom: 20px;
}
/* Cell Padding */
	th, td {
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 15px;
		padding-right: 15px;
	}
/* style an image */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* style a button */
.button {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
}
/* Dropdown Button */
.dropbtn {
  background-color: #000000;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}
.hero {
	margin-bottom: 50px;
}

.about {
	margin-bottom: 50px;
}

.Leagues {
	margin-top: 50px;
}