body {
  font-family: 'Arial Black', Gadget, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #FFFFFF; /* White background */
  color: #C8102E; /* Red text color */
  background-image: url('path/to/football-background.jpg'); /* Add a football-themed background image */
  background-size: cover;
  background-position: center;
}

.title {
  font-size: 128px;
  font-weight: bold;
  margin-top: 20px;
  text-shadow: 4px 4px #000; /* Add shadow for a 3D effect */
  color: #00247D; /* Dark blue to represent England's colors */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.controlBtn {
  width: 128px; /* Adjust width as needed */
  margin: 10px;
  padding: 10px;
  font-size: 56px;
  border: 2px solid #00247D; /* Add border with England's color */
  border-radius: 50%;
  background-color: #C8102E; /* Red background */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Add transform transition */
}

.controlBtn:hover {
  background-color: #9B111E; /* Darker red on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.playBtn {
  width: 70%;
  margin: 20px;
  padding: 30px; /* Increased padding to make it bigger */
  font-size: 56px; /* Increased font size */
  border: 2px solid #00247D; /* Add border with England's color */
  border-radius: 10px;
  background-color: #C8102E; /* Red background */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Add transform transition */
}

.playBtn:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.playBtn.paused {
  background-color: #00247D; /* Dark blue for paused state */
}

#audioPlayer {
  display: none;
}

#trackName {
  margin-top: 20px;
  font-size: 56px; /* Adjust font size as needed */
  font-weight: bold;
  color: #00247D; /* Dark blue for England theme */
}

.background-img {
  width: 100%;
  opacity: 0.3; /* Make the background image less intrusive */
}
