
      body {
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        background-color: #f2f2f2;

        background-image: url("../images/shakthi-fm-background.webp"); /* Replace 'background-image.jpg' with the path to your image */
        background-size: cover;
        background-position: center;
        height: 100%;
      }

      .container_my {
        display: flex;
        flex-direction: column; /* Display content vertically */
        align-items: center;
        justify-content: center; /* Center vertically */
        width: 100%;
        height: 100vh;
        padding: 20px;
      }
      .custom_padding {
        padding: 150px;
      }

      .banner,
      .audio-player-container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .banner {
        width: 720px;
        height: 240px;
        background-image: url("images/logo-banner.webp");
        background-size: cover;
        background-position: center;
        margin-bottom: 20px;
      }

      .audio-player {
        position: relative;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: #db0000;
        border: 5px solid #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 800px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }

      audio {
        display: none;
      }

      #play-pause {
        font-size: 36px;
        color: #ffffff;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .audio-player:hover {
        transform: scale(1.05) rotateX(10deg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      }

      .audio-player:hover #play-pause {
        transform: scale(1.1);
      }

      .audio-player:hover #play-pause.play {
        font-size: 50px;
      }

      .audio-player:hover #play-pause.pause {
        font-size: 30px;
      }

      .volume-bar-container {
        display: flex;
        align-items: center;
      }

      .volume-bar {
        width: 150px;
        height: 10px;
        background-color: #db0000 !important;
        margin-left: 20px;
        accent-color: #db0000;
      }

      .volume-level {
        width: 50%;
        height: 100%;
        background-color: #000000;
      }

      .mute-button {
        color: #db0000;
        font-size: 30px;
        margin-left: 10px;
        cursor: pointer;
      }
      @media (max-width: 768px) {
        .custom_padding {
          padding: 20px;
        }
      }
      @media only screen and (min-width: 768px) {
        /* For tablets and larger devices */
        .container_my {
          flex-direction: row; /* Display content horizontally */
        }

        .banner {
          margin-bottom: 0;
          margin-right: 20px;
        }
      }

      .logo-banner {
        width: 100%;
        height: auto;
      }

      .social_icon_block{
        justify-content: center;
        align-items: center;
      }

      .social_icon{

        margin-left: 5px;
        margin-right: 5px;

      }

