* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assemblee-nationale.jpg'); /* Remplacez par le chemin de votre grande image */
  background-size: cover;
  background-position: center;
  filter: blur(10px); /* Ajustez le niveau de flou selon vos préférences */
  z-index: -1;
}

.audio-player {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-image: url('an.png'); /* Remplacez 'votre_image.jpg' par le chemin de votre image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.audio-player:hover {
  transform: scale(1.05);
}

.play-button {
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.header {
  position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
  width: 100%;
  height: 100px;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.company-name {
  font-size: 1.2em;
  color: #333;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .audio-player {
      width: 170px;
      height: 170px;
  }

  .play-button {
      font-size: 30px;
      width: 80px;
      height: 80px;
  }
}

@media (max-width: 480px) {
  .audio-player {
      width: 150px;
      height: 150px;
  }

  .play-button {
      font-size: 24px;
      width: 50px;
      height: 50px;
  }
}
