Football Player Script

Dynamically generated player data.

Player 1

Player 1: David Miller

Age: 24 Position: Forward League: Premier League Goals: 25 Assists: 85 Points: 187 Penalty Cautions: 3 Fouls: 10 Minutes Played: 220

Player 2

Player 2: Lionel Messi

Age: 33 Position: Midfielder League: La Liga Goals: 74 Assists: 62 Points: 81 Penalty Cautions: 1 Fouls: 12 Minutes Played: 280

Player 3

Player 3: Kylian Mbappé

Age: 24 Position: Striker League: Ligue 1 Goals: 72 Assists: 61 Points: 78 Penalty Cautions: 2 Fouls: 15 Minutes Played: 250

``` ```css /* style.css */ body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } header { background-color: #333; color: #fff; padding: 20px; text-align: center; margin-bottom: 20px; } main { padding: 20px; } section { margin-bottom: 20px; } .player-card { background-color: #f9f9f9; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease-in-out; } .player-card:hover { transform: scale(1.1); } img { max-width: 200px; height: auto; border-radius: 5px; margin-bottom: 10px; } footer { background-color: #333; color: #fff; text-align: center; padding: 20px; margin-top: 20px; } /* Responsive Design */ @media (max-width: 768px) { .container { width: 95%; } main { padding: 15px; } section { margin-bottom: 20px; } }