@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,600;1,500&display=swap');

body {
    font-family: 'Karla', sans-serif;
    font-size: 21px;
    line-height: 1.5em;
    background-color: #100d0f;
    color: #fff;
    background-image: url(xmas.gif);
    background-size: 100%;
    background-repeat: no-repeat;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}
a{color: red;}

.container-wrapper {
    margin-right: auto; /* 1 */
    margin-left:  auto; /* 1 */
  
    max-width: 540px; /* 2 */
  
    padding-right: 10px; /* 3 */
    padding-left:  10px; /* 3 */
    padding-top:  200px; /* 3 */
  }

  .container {
      border:none;
  }

  audio
{
-webkit-transition:all 0.5s linear;
-moz-transition:all 0.5s linear;
-o-transition:all 0.5s linear;
transition:all 0.5s linear;
width: 100%;
}
  
audio::-webkit-media-controls-panel {
    background-image: url('spacer.gif');
    border-radius: none !important;
    }



    audio::-webkit-media-controls-mute-button, audio::-webkit-media-controls-play-button, audio::-webkit-media-controls-timeline-container, audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display, audio::-webkit-media-controls-timeline {
    border-radius:0px ;
    color:#fff;
    
    
}

audio::-webkit-media-controls-play-button{
    background-color: #fff;
    border-radius: 30px;
}

audio::-webkit-media-controls-volume-slider {
    background-color: turquoise;
    color: tomato;
}

audio::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }

  .blink_me {
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }