body {
    margin: 0;
    padding: 0;
    color: #e2e2e2;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background: #ab2d91;
    background-size: cover;
}
a {
    color: #fff;
}
a:hover {
    color: #ebe303;
    text-decoration: none;
}
.live {
    position: relative;
    z-index: 11;
}
.live .container {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    height: 100vh;
}
.live-box {
    text-align: center;
    max-width: 750px;
    margin: auto;
}
.logo {
    max-width: 100px;
    margin: auto;
}
.play-btn {
    margin: 4rem 0;
    text-align: center;
}
/* .play-btn .btn-play {
    color: #fff;
    background: #8d1a3d;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border:solid 1px #8d1a3d;
    font-size: 36px;
    text-align: center;
    transition: all .5s ease;
    transform: scale(1);
}
.play-btn .btn-play:hover {
    background: #700b2a;
    border: solid 1px #700b2a;
    transform: scale(1.2);
} */
.tagline h2 {
    color: #fff;
    font-weight: 200;
    font-size: 2rem;
}
.sound-btn {
    margin: 2rem auto 1rem;
}
.sound-btn .btn-sound {
    background: transparent;
    color: #fff;
    border: none;
}
.sound-btn .btn-sound:hover {
    background: #8d1a3d;
}
.copy {
    color: #f3dccc;
}

/* Audio files style */
#player-container {
    text-align: center;
}
#player-container #play-pause {
    cursor: pointer;
    text-indent: -999999px;
    height:90px;
    width: 90px;
    border-radius: 50%;
    background: #fff;
    background-image: url('../images/play.png');
    background-repeat:no-repeat;
    background-position:center;
    margin: auto;
    box-shadow: 0px 0px 50px #6f2960;
  }
  .play {
    background-image: url('../images/play.png');
  }
  .pause {
     background-image: url('../images/pause.png')!important;
  }

  .unmute {
    background-image: url(../images/sound.png);
    background-size: cover;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: auto;
  }
  
  .mute {
    background-image: url(../images/mute.png);
  }
