
   
    .audio-container {
      background-color: #800000;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 80%;
      max-width: 600px;
      text-align: center;
    }

    audio {
      width: 100%;
      border-radius: 5px;
      outline: none;
    }

    .audio-title {
      font-size: 24px;
      margin-bottom: 10px;
      color: #FFFFFF;
    }

    .audio-description {
      font-size: 16px;
      color: #FFFFFF;
    }
	.audio-cover {
      width: 150px;
      height: 150px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .audio-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
