body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('tiger-print.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

h1 {
  background: linear-gradient(to right, white, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

header {
  background-color: rgba(251, 79, 20, 0.9);
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  margin: 2rem;
  border-radius: 10px;
  text-align: center;
}

div {
  margin-bottom: 2rem;
}

h2 {
  color: #fb4f14;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem;
  border-radius: 5px;
  display: inline-block;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 1rem auto;
  max-width: 800px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 8px;
}

ul {
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.player-section {
  background-color: rgba(0, 0, 0, 0);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.player-img {
  width: 100%;
  max-width: 250px;
  height: 350px;
  margin-bottom: 0.5rem;
}

.player-desc {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 90%;
}

.coach-text {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  max-width: 330px;
  margin: 1rem auto;
  border-radius: 10px;
  font-size: 1.4em;
  line-height: 1.6;
}

.key-text {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  margin: 1rem auto;
  border-radius: 10px;
  font-size: 1.2em;
  line-height: 2;  
}

.intro-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.stadium-left, .fans-right {
  width: 20%;
}

.stadium, .fans {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.team-description {
  width: 50%;
  text-align: center;
}

.team-description h2 {
  font-size: 2rem;
}

.team-description p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.football-left, .NFL-right {
  width: 20%;
}

.football-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.football-description {
  width: 60%;
  text-align: center;
}

.football {
  width: 90%;
  height: auto;
  border-radius: 8px;
}

.NFL {
  width: 60%;
  height: auto;
  border-radius: 8px;
}

.football-description h2 {
  font-size: 2rem;
}

.football-description p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.football-intro {
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.football-intro ul {
  list-style-type: none;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.7);
}

.football-intro li {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.2rem;
}

.impact-head {
  font-size: 1.35rem;
}

.background-title {
  font-size: 1.35rem;
}

.site-footer {
  background-color: #fb4f14;
  color: black;
  text-align: center;
  padding: .1rem 0;
  width: 100%;
  margin-top: .5rem;
}

.coach-table th, .playoff-table th {
  background-color: #fb4f14;
  font-weight: bold;
}

.coach-playoff-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2rem;
}

.coach-table, .playoff-table {
  border-collapse: collapse;
  width: 100%;
}

.coach-table th, .coach-table td,
.playoff-table th, .playoff-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.coach-table th, .playoff-table th {
  background-color: #fb4f14;
  font-weight: bold;
}